summaryrefslogtreecommitdiff
path: root/hints/README.hints
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-08-23 01:37:29 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-08-23 01:37:29 +0000
commitb19cab981461db85ad7c3a6e9d407581f6ee6f1c (patch)
tree0bad4955aa1ae03896fdc90bfaeada0af8ace3c4 /hints/README.hints
parent44ae4f4f163d5d4bc77d7abbfbe6ab893202d9d4 (diff)
downloadperl-b19cab981461db85ad7c3a6e9d407581f6ee6f1c.tar.gz
perl 5.003_03: hints/README.hints
Remove out-of-date info. Document a bit about how hint files work.
Diffstat (limited to 'hints/README.hints')
-rw-r--r--hints/README.hints90
1 files changed, 34 insertions, 56 deletions
diff --git a/hints/README.hints b/hints/README.hints
index 6c67585561..2c27068e38 100644
--- a/hints/README.hints
+++ b/hints/README.hints
@@ -1,61 +1,39 @@
These files are used by Configure to set things which Configure either
-can't or doesn't guess properly. Many of these hints files are from
-perl4. They may or may not work with perl5, but they are probably a
-good starting point.
+can't or doesn't guess properly. Most of these hint files have been
+tested with at least some version of perl5, but some are still left
+over from perl4. I would appreciate hearing about any problems
+or suggested changes.
-The following hints files have been tested with at least some version
-of perl5 and are probably reasonably close to being correct:
+Hint file naming convention: Each hint file name should have only
+one '.'. (This is for portability to non-unix filesystems.) Names
+should also fit in <= 14 characters, for portability to older SVR3
+systems. File names are of the form $osname_$osvers.sh, with all '.'
+changed to '_', and all characters such as '/' that don't belong in
+Unix filenames omitted.
-aix.sh
-aux.sh
-bsdos.sh
-dec_osf.sh
-dgux.sh
-esix4.sh
-freebsd.sh
-hpux_9.sh
-irix_4.sh
-irix_5.sh
-irix_6.sh
-irix_6_2.sh
-isc.sh
-linux.sh
-machten_2.sh
-machten.sh
-ncr_tower.sh
-netbsd.sh
-next_3_2.sh
-sco_3.sh
-solaris_2.sh
-sunos_4_1.sh
-svr4.sh
-titanos.sh
-ultrix_4.sh
-unicos.sh
-utekv.sh
+For example, consider SunOS 4.1.3. Configure determines $osname=sunos
+(all names are converted to lower case) and $osvers=4.1.3. Configure
+will search for an appropriate hint file in the following order:
-The following hints files have not been tested with perl5:
+ sunos_4_1_3.sh
+ sunos_4_1.sh
+ sunos_4.sh
+ sunos.sh
-3b1.sh
-altos486.sh
-apollo.sh
-dnix.sh
-dynix.sh
-fps.sh
-genix.sh
-greenhills.sh
-i386.sh
-isc_2.sh
-mips.sh
-mpc.sh
-opus.sh
-sco_2_3_0.sh
-sco_2_3_1.sh
-sco_2_3_2.sh
-sco_2_3_3.sh
-sco_2_3_4.sh
-stellar.sh
-sunos_4_0.sh
-ti1500.sh
-unisysdynix.sh
-uts.sh
+If you need to create a hint file, please try to use as general a name
+as possible and include minor version differences inside case or test
+statements. Be sure also to include a default choice. (See
+aix.sh for one example.) That way, if you write a hint file for
+foonix 3.2, it might still work without any changes when foonix 3.3 is
+released.
+
+Please also comment carefully on why the different hints are needed.
+That way, a future version of Configure may be able to automatically
+detect what is needed. A glossary of config.sh variables is in the
+file Porting/Glossary.
+
+Have the appropriate amount of fun :-)
+
+ Andy Dougherty doughera@lafcol.lafayette.edu
+ Dept. of Physics
+ Lafayette College, Easton PA 18042