diff options
author | Andreas Koenig <k@anna.in-berlin.de> | 1996-09-28 15:11:06 +0200 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-09-28 15:11:06 +0200 |
commit | 6193ae6cdedc49e82c55860f9429e04d43604f90 (patch) | |
tree | 34171c0ce4787c2d86625648c7d49ac306f6db71 | |
parent | c28ee57b51a18db4c5f90f3baed91fcbf94aa608 (diff) | |
download | perl-6193ae6cdedc49e82c55860f9429e04d43604f90.tar.gz |
Dale's posting as patch (Was: Perl 5.003_5 make fails on NS3.2 - CURED)
Handle NeXT, POSIX, and setpgid in pp_sys.c and POSIX.
-rw-r--r-- | ext/POSIX/hints/next_3.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/POSIX/hints/next_3.pl b/ext/POSIX/hints/next_3.pl new file mode 100644 index 0000000000..d90778398b --- /dev/null +++ b/ext/POSIX/hints/next_3.pl @@ -0,0 +1,5 @@ +# NeXT *does* have setpgid when we use the -posix flag, but +# doesn't when we don't. The main perl sources are compiled +# without -posix, so the hints/next_3.sh hint file tells Configure +# that d_setpgid=undef. +$self->{CCFLAGS} = $Config{ccflags} . ' -posix -DHAS_SETPGID' ; |