This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add descriptions for $^E and $^O, and squash a typo.
[perl5.git] / hints / convexos.sh
1 # convexos.sh
2 # Thanks to David Starks-Browning <dstarks@rc.tudelft.nl>
3 # Date: Tue, 17 Jan 1995 10:45:03 -0500 (EST)
4 # Subject: Re: Hints for ConvexOS 10.2
5
6 # uname -a output looks like
7 #   ConvexOS  xxxx C38xx  10.2 convex
8 # Configure may incorrectly assign $3 to $osvers.
9 #
10 set X $myuname
11 shift
12 osvers=$4
13 # ConvexOS 10.2 uses POSIX process group semantics for getpgrp but
14 # BSD semantics for setpgrp.  Perl assumes you don't have such
15 # a mixed system, so we undef d_getpgrp.
16 #   Andy Dougherty              doughera@lafcol.lafayette.edu
17 #
18 case "$osvers" in
19 10.2)   d_getpgrp='undef' ;;
20 esac