diff options
author | Larry Wall <lwall@netlabs.com> | 1992-06-08 04:52:59 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1992-06-08 04:52:59 +0000 |
commit | 2b69d0c297460bce3a8d8eefe2bd0de0a6451872 (patch) | |
tree | 918d4cf76b228b2cec26aede54e1c35e6b024c25 /hints | |
parent | 32c2e4fbb7ba898d9e58e8d2292dd45b8692070d (diff) | |
download | perl-2b69d0c297460bce3a8d8eefe2bd0de0a6451872.tar.gz |
perl 4.0 patch 31: patch #20, continued
See patch #20.
Diffstat (limited to 'hints')
-rw-r--r-- | hints/sco_2_3_3.sh | 1 | ||||
-rw-r--r-- | hints/sco_2_3_4.sh | 5 | ||||
-rw-r--r-- | hints/sgi.sh | 8 | ||||
-rw-r--r-- | hints/ultrix_4.sh | 1 | ||||
-rw-r--r-- | hints/unisysdynix.sh | 1 |
5 files changed, 14 insertions, 2 deletions
diff --git a/hints/sco_2_3_3.sh b/hints/sco_2_3_3.sh index d1db39f8af..10baafd6a3 100644 --- a/hints/sco_2_3_3.sh +++ b/hints/sco_2_3_3.sh @@ -1,4 +1,3 @@ yacc='/usr/bin/yacc -Sm25000' -libswanted=`echo $libswanted | sed 's/ x / /'` echo "NOTE: you may have problems due to a spurious semicolon on the strerror()" echo "macro definition in /usr/include/string.h. If so, delete the semicolon." diff --git a/hints/sco_2_3_4.sh b/hints/sco_2_3_4.sh new file mode 100644 index 0000000000..3a1b13c1b6 --- /dev/null +++ b/hints/sco_2_3_4.sh @@ -0,0 +1,5 @@ +yacc='/usr/bin/yacc -Sm25000' +ccflags="$ccflags -UM_I86" +d_mymalloc=define +echo "NOTE: you may have problems due to a spurious semicolon on the strerror()" +echo "macro definition in /usr/include/string.h. If so, delete the semicolon." diff --git a/hints/sgi.sh b/hints/sgi.sh index b7db156461..4252aaf148 100644 --- a/hints/sgi.sh +++ b/hints/sgi.sh @@ -1,6 +1,12 @@ optimize='-O1' -usemymalloc='y' +d_mymalloc=define mallocsrc='malloc.c' mallocobj='malloc.o' d_voidsig=define d_vfork=undef +d_charsprf=undef +case `(uname -r) 2>/dev/null` in +4*)libswanted=`echo $libswanted | sed 's/c_s \(.*\)/\1 c_s/'` + ccflags="$ccflags -DLANGUAGE_C -DBSD_SIGNALS -cckr -signed" + ;; +esac diff --git a/hints/ultrix_4.sh b/hints/ultrix_4.sh index 91e5d7d109..633e904b72 100644 --- a/hints/ultrix_4.sh +++ b/hints/ultrix_4.sh @@ -18,5 +18,6 @@ case "$tmp" in toke_cflags='optimize="-g"' ttoke_cflags='optimize="-g"' ;; +*4.2*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;; esac diff --git a/hints/unisysdynix.sh b/hints/unisysdynix.sh new file mode 100644 index 0000000000..4251ba8d47 --- /dev/null +++ b/hints/unisysdynix.sh @@ -0,0 +1 @@ +d_waitpid=undef |