aboutsummaryrefslogtreecommitdiff
path: root/pkgs/shells/bash/pgrp-pipe-5.0.patch
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2020-01-07 09:49:54 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-01-15 09:45:11 +0100
commit996e11d92b7df39896067a969f9d4269b6e18d14 (patch)
tree5e0ec42c82e3486c1862e0f0c4ade55ed6cf26e9 /pkgs/shells/bash/pgrp-pipe-5.0.patch
parent320a4c15265d6afb7eb6e28fcc1f72a80367ccc1 (diff)
bash: enable PGRP_PIPE deterministically #77055
Diffstat (limited to 'pkgs/shells/bash/pgrp-pipe-5.0.patch')
-rw-r--r--pkgs/shells/bash/pgrp-pipe-5.0.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/shells/bash/pgrp-pipe-5.0.patch b/pkgs/shells/bash/pgrp-pipe-5.0.patch
new file mode 100644
index 000000000000..2a9fa6f33c3b
--- /dev/null
+++ b/pkgs/shells/bash/pgrp-pipe-5.0.patch
@@ -0,0 +1,31 @@
+diff -u ./configure ../bash-5.0-fixed/configure
+--- ./configure 2019-01-02 15:43:31.000000000 +0100
++++ ../bash-5.0-fixed/configure 2020-01-08 14:18:21.017296179 +0100
+@@ -16312,11 +16312,7 @@
+ solaris2*) LOCAL_CFLAGS=-DSOLARIS ;;
+ lynxos*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;;
+ linux*) LOCAL_LDFLAGS=-rdynamic # allow dynamic loading
+- case "`uname -r`" in
+- 1.*|2.[0123]*) : ;;
+- *) $as_echo "#define PGRP_PIPE 1" >>confdefs.h
+- ;;
+- esac ;;
++ $as_echo "#define PGRP_PIPE 1" >>confdefs.h ;;
+ netbsd*|openbsd*) LOCAL_CFLAGS="-DDEV_FD_STAT_BROKEN" ;;
+ *qnx[67]*) LOCAL_LIBS="-lncurses" ;;
+ *qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;;
+diff -u ./configure.ac ../bash-5.0-fixed/configure.ac
+--- ./configure.ac 2019-01-02 15:39:11.000000000 +0100
++++ ../bash-5.0-fixed/configure.ac 2019-01-02 15:39:11.000000000 +0100
+@@ -1108,10 +1108,7 @@
+ solaris2*) LOCAL_CFLAGS=-DSOLARIS ;;
+ lynxos*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;;
+ linux*) LOCAL_LDFLAGS=-rdynamic # allow dynamic loading
+- case "`uname -r`" in
+- 1.*|2.[[0123]]*) : ;;
+- *) AC_DEFINE(PGRP_PIPE) ;;
+- esac ;;
++ AC_DEFINE(PGRP_PIPE) ;;
+ netbsd*|openbsd*) LOCAL_CFLAGS="-DDEV_FD_STAT_BROKEN" ;;
+ *qnx[[67]]*) LOCAL_LIBS="-lncurses" ;;
+ *qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;;