diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2009-06-08 14:35:28 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2009-06-08 14:35:28 +0000 |
commit | 42eabd775382a2bb10e1cfa3d850d52c299ec1d8 (patch) | |
tree | 64b2d004842f825a8d647d022ccccaaff42b3b52 /lang/perl5.16/files/patch-setpgrp | |
parent | - Add PORTSCOUT to ignore false positive new versions (diff) |
- Add more essential bugfixes
- Add perl-threaded-5.* to CONFLICTS [1]
- Introduce PERL_VENDOR_PREFIX variable
- Be really PREFIX-neutral [2}
Submitted by: lth [1], rafan [2]
Diffstat (limited to '')
-rw-r--r-- | lang/perl5.16/files/patch-setpgrp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lang/perl5.16/files/patch-setpgrp b/lang/perl5.16/files/patch-setpgrp new file mode 100644 index 000000000000..e44f7aae0d5c --- /dev/null +++ b/lang/perl5.16/files/patch-setpgrp @@ -0,0 +1,13 @@ +# http://perl5.git.perl.org/perl.git/commit/1f200948c4c45a9bc088451dd377e4ab8733c722 +diff --git a/pp_sys.c b/pp_sys.c +index cfbf918..0d2c970 100644 +--- pp_sys.c ++++ pp_sys.c +@@ -4318,6 +4318,7 @@ PP(pp_setpgrp) + if (MAXARG < 2) { + pgrp = 0; + pid = 0; ++ XPUSHi(-1); + } + else { + pgrp = POPi; |