diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1994-04-04 00:00:00 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1994-04-04 00:00:00 +0000 |
commit | 2304df62caa7d9be70e8b8bcdb454e139c9c103d (patch) | |
tree | 98a456ef0fbe59b1a02bfe68afa4a3d9afb4f21c /hints | |
parent | 8990e3071044a96302560bbdb5706f3e74cf1bef (diff) | |
download | perl-2304df62caa7d9be70e8b8bcdb454e139c9c103d.tar.gz |
perl 5.0 alpha 8
[the last one taken from the September '94 InfoMagic CD; a similar
style of cleanup as the previous commits was performed]
Diffstat (limited to 'hints')
-rw-r--r-- | hints/isc_3_2_2.sh | 4 | ||||
-rw-r--r-- | hints/isc_3_2_3.sh | 2 | ||||
-rw-r--r-- | hints/solaris_2_2.sh | 10 | ||||
-rw-r--r-- | hints/solaris_2_3.sh | 10 | ||||
-rw-r--r-- | hints/sunos_4_1_2.sh | 1 | ||||
-rw-r--r-- | hints/sunos_4_1_3.sh | 1 |
6 files changed, 25 insertions, 3 deletions
diff --git a/hints/isc_3_2_2.sh b/hints/isc_3_2_2.sh index ff591082a3..0736d3d303 100644 --- a/hints/isc_3_2_2.sh +++ b/hints/isc_3_2_2.sh @@ -1,5 +1,5 @@ -set `echo $libswanted | sed -e 's/ x / /' -e 's/ PW / /' -e 's/ malloc / /'` -libswanted="inet malloc $*" +set `echo $libswanted | sed -e 's/ x / /' -e 's/ PW / /'` +libswanted="$*" doio_cflags='ccflags="$ccflags -DENOTSOCK=103"' tdoio_cflags='ccflags="$ccflags -DENOTSOCK=103"' echo "<net/errno.h> defines error numbers for network calls, but" diff --git a/hints/isc_3_2_3.sh b/hints/isc_3_2_3.sh index ca1b549426..cad7a5bfb0 100644 --- a/hints/isc_3_2_3.sh +++ b/hints/isc_3_2_3.sh @@ -1,2 +1,2 @@ -set `echo $libswanted | sed -e 's/ socket / inet /'` +set `echo $libswanted | sed -e 's/ PW / /' -e 's/ x / /'` libswanted="$*" diff --git a/hints/solaris_2_2.sh b/hints/solaris_2_2.sh new file mode 100644 index 0000000000..01b9d93342 --- /dev/null +++ b/hints/solaris_2_2.sh @@ -0,0 +1,10 @@ +d_vfork='undef' +set `echo $libpth | sed -e 's@/usr/ucblib@@'` +libpth="$*" +case $PATH in +*/usr/ucb*:/usr/bin:*) cat <<END +NOTE: Some people have reported problems with /usr/ucb/cc. +Remove /usr/ucb from your PATH if you have difficulties. +END +;; +esac diff --git a/hints/solaris_2_3.sh b/hints/solaris_2_3.sh new file mode 100644 index 0000000000..01b9d93342 --- /dev/null +++ b/hints/solaris_2_3.sh @@ -0,0 +1,10 @@ +d_vfork='undef' +set `echo $libpth | sed -e 's@/usr/ucblib@@'` +libpth="$*" +case $PATH in +*/usr/ucb*:/usr/bin:*) cat <<END +NOTE: Some people have reported problems with /usr/ucb/cc. +Remove /usr/ucb from your PATH if you have difficulties. +END +;; +esac diff --git a/hints/sunos_4_1_2.sh b/hints/sunos_4_1_2.sh new file mode 100644 index 0000000000..9439388774 --- /dev/null +++ b/hints/sunos_4_1_2.sh @@ -0,0 +1 @@ +groupstype='int' diff --git a/hints/sunos_4_1_3.sh b/hints/sunos_4_1_3.sh new file mode 100644 index 0000000000..9439388774 --- /dev/null +++ b/hints/sunos_4_1_3.sh @@ -0,0 +1 @@ +groupstype='int' |