summaryrefslogtreecommitdiff
path: root/hints/convexos.sh
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafcol.lafayette.edu>1995-01-18 02:27:49 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1995-01-18 02:27:49 +0000
commitf4cb4c40de81ad9c5a8e775c2298ec5a52130124 (patch)
treebad0204337c331cde841254c428d1a6ebee231a2 /hints/convexos.sh
parent3edbfbe5ecbb7e6fb99acc874379580a458f3cff (diff)
downloadperl-f4cb4c40de81ad9c5a8e775c2298ec5a52130124.tar.gz
perl 5.000d : [hint file updates]
This patch consolidates most of the hint file updates I've been collecting since perl5.000's release. Some of the updates don't make any sense until you also apply the Configure patches in patch.0g. (A few late arrivals are also in patch.0g.)
Diffstat (limited to 'hints/convexos.sh')
-rw-r--r--hints/convexos.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/hints/convexos.sh b/hints/convexos.sh
new file mode 100644
index 0000000000..f0ce409756
--- /dev/null
+++ b/hints/convexos.sh
@@ -0,0 +1,20 @@
+# convexos.sh
+# Thanks to David Starks-Browning <dstarks@rc.tudelft.nl>
+# Date: Tue, 17 Jan 1995 10:45:03 -0500 (EST)
+# Subject: Re: Hints for ConvexOS 10.2
+#
+# uname -a output looks like
+# ConvexOS xxxx C38xx 10.2 convex
+# Configure may incorrectly assign $3 to $osvers.
+#
+set X $myuname
+shift
+osvers=$4
+# ConvexOS 10.2 uses POSIX process group semantics for getpgrp but
+# BSD semantics for setpgrp. Perl assumes you don't have such
+# a mixed system, so we undef d_getpgrp.
+# Andy Dougherty doughera@lafcol.lafayette.edu
+#
+case "$osvers" in
+10.2) d_getpgrp='undef' ;;
+esac