summaryrefslogtreecommitdiff
path: root/hints/convexos.sh
diff options
context:
space:
mode:
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