diff options
author | Larry Wall <lwall@netlabs.com> | 1994-05-04 23:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1994-05-04 23:00:00 +0000 |
commit | 85e6fe838fb25b257a1b363debf8691c0992ef71 (patch) | |
tree | fd5340cd6c3bbabfc21d3b0cac48e7ab3a481ebf /hints | |
parent | 2304df62caa7d9be70e8b8bcdb454e139c9c103d (diff) | |
download | perl-5a9.tar.gz |
perl 5.0 alpha 9perl-5a9
[editor's note: the sparc executables have not been included,
and emacs backup files have been removed]
Diffstat (limited to 'hints')
-rw-r--r-- | hints/3b1cc | 2 | ||||
-rw-r--r-- | hints/aix_rs.sh | 2 | ||||
-rw-r--r-- | hints/cray.sh | 5 | ||||
-rw-r--r-- | hints/dec_osf_2_0.sh | 13 | ||||
-rw-r--r-- | hints/hp9000_700.sh | 4 | ||||
-rw-r--r-- | hints/isc_3_2_3.sh | 3 | ||||
-rw-r--r-- | hints/next_3_2.sh | 8 | ||||
-rw-r--r-- | hints/titan.sh | 2 |
8 files changed, 34 insertions, 5 deletions
diff --git a/hints/3b1cc b/hints/3b1cc index 5570fbdccb..0001e046b8 100644 --- a/hints/3b1cc +++ b/hints/3b1cc @@ -1,5 +1,7 @@ # To incorporate the 7300/3b1 shared library, run this script in place # of 'CC'. +# You can skip this is you have the shcc program installed as cc in +# your path. # First: Run 'Configure' through to the end and run 'make depend'. # Second: Edit 'makefile' ( not Makefile ) and set CC = 3b1cc. # Third: Edit 'x2p/makefile' and set CC = 3b1cc. diff --git a/hints/aix_rs.sh b/hints/aix_rs.sh index 5bf193b380..b2bbb9be7e 100644 --- a/hints/aix_rs.sh +++ b/hints/aix_rs.sh @@ -4,7 +4,7 @@ d_setrgid='undef' d_setruid='undef' d_setegid='undef' d_seteuid='undef' -alignbytes=8 +memalignbytes=8 ccflags="$ccflags -D_NO_PROTO" cppstdin='/lib/cpp -D_AIX -D_IBMR2 -U__STR__' cppminus='' diff --git a/hints/cray.sh b/hints/cray.sh index 952a0219e1..2ce956695e 100644 --- a/hints/cray.sh +++ b/hints/cray.sh @@ -1,3 +1,8 @@ case `uname -r` in 6.1*) shellflags="-m+65536" ;; esac +ccflags="$ccflags -DUNICOS -h nomessage=118:151:172" +usemymalloc='n' +libswanted='malloc m' +d_setregid='undef' +d_setreuid='undef' diff --git a/hints/dec_osf_2_0.sh b/hints/dec_osf_2_0.sh new file mode 100644 index 0000000000..207e56540a --- /dev/null +++ b/hints/dec_osf_2_0.sh @@ -0,0 +1,13 @@ +# hints/dec_osf_2_0.sh +d_odbm='undef' # We don't need both odbm and ndbm +gidtype='gid_t' +groupstype='gid_t' +d_voidshmat='define' +clocktype='time_t' +libpth="$libpth /usr/shlib" # Use the shared libraries if possible +libc='/usr/shlib/libc.so' # The archive version is /lib/libc.a +case `uname -m` in + mips|alpha) optimize="$optimize -g" + ccflags="$ccflags -D_BSD -DSTANDARD_C -DDEBUGGING" ;; + *) ccflags="$ccflags -D_BSD -DSTANDARD_C -DDEBUGGING" ;; +esac diff --git a/hints/hp9000_700.sh b/hints/hp9000_700.sh index 5b15a893b5..eee8a4e1a6 100644 --- a/hints/hp9000_700.sh +++ b/hints/hp9000_700.sh @@ -1,5 +1,5 @@ libswanted='ndbm m' -ccflags="$ccflags -DJMPCLOBBER" +ccflags="$ccflags -Aa -D_POSIX_SOURCE -D_HPUX_SOURCE -DJMPCLOBBER" optimize='+O1' d_mymalloc=define -alignbytes=8 +memalignbytes=8 diff --git a/hints/isc_3_2_3.sh b/hints/isc_3_2_3.sh index cad7a5bfb0..5b99353d1c 100644 --- a/hints/isc_3_2_3.sh +++ b/hints/isc_3_2_3.sh @@ -1,2 +1,3 @@ -set `echo $libswanted | sed -e 's/ PW / /' -e 's/ x / /'` +set `echo "$libswanted" | sed -e 's/ PW / /' -e 's/ x / /'` libswanted="$*" +ccflags="$ccflags -DCRIPPLED_CC -DDEBUGGING" diff --git a/hints/next_3_2.sh b/hints/next_3_2.sh new file mode 100644 index 0000000000..a77e2ae217 --- /dev/null +++ b/hints/next_3_2.sh @@ -0,0 +1,8 @@ +hintfile='next_3_2' +ccflags='-posix -Disascii=NXIsAscii -DDEBUGGING -DHIDEMYMALLOC' +ldflags='-u libsys_s' +i_dirent='undef' +groupstype='int' +libs='-ldbm' +optimize='-O' +lddlflags='-r' diff --git a/hints/titan.sh b/hints/titan.sh index 0ed27e32ad..1801e82518 100644 --- a/hints/titan.sh +++ b/hints/titan.sh @@ -2,7 +2,7 @@ # Created by: JT McDuffie (jt@kpc.com) 26 DEC 1991 bin='/usr/local/bin' installbin='/usr/local/bin' -alignbytes="8" +memalignbytes="8" byteorder="4321" cppstdin='/lib/cpp' cppminus='' |