Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-20.03 31 lines 1.3 kB view raw
1diff -u ./configure ../bash-5.0-fixed/configure 2--- ./configure 2019-01-02 15:43:31.000000000 +0100 3+++ ../bash-5.0-fixed/configure 2020-01-08 14:18:21.017296179 +0100 4@@ -16312,11 +16312,7 @@ 5 solaris2*) LOCAL_CFLAGS=-DSOLARIS ;; 6 lynxos*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;; 7 linux*) LOCAL_LDFLAGS=-rdynamic # allow dynamic loading 8- case "`uname -r`" in 9- 1.*|2.[0123]*) : ;; 10- *) $as_echo "#define PGRP_PIPE 1" >>confdefs.h 11- ;; 12- esac ;; 13+ $as_echo "#define PGRP_PIPE 1" >>confdefs.h ;; 14 netbsd*|openbsd*) LOCAL_CFLAGS="-DDEV_FD_STAT_BROKEN" ;; 15 *qnx[67]*) LOCAL_LIBS="-lncurses" ;; 16 *qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;; 17diff -u ./configure.ac ../bash-5.0-fixed/configure.ac 18--- ./configure.ac 2019-01-02 15:39:11.000000000 +0100 19+++ ../bash-5.0-fixed/configure.ac 2019-01-02 15:39:11.000000000 +0100 20@@ -1108,10 +1108,7 @@ 21 solaris2*) LOCAL_CFLAGS=-DSOLARIS ;; 22 lynxos*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;; 23 linux*) LOCAL_LDFLAGS=-rdynamic # allow dynamic loading 24- case "`uname -r`" in 25- 1.*|2.[[0123]]*) : ;; 26- *) AC_DEFINE(PGRP_PIPE) ;; 27- esac ;; 28+ AC_DEFINE(PGRP_PIPE) ;; 29 netbsd*|openbsd*) LOCAL_CFLAGS="-DDEV_FD_STAT_BROKEN" ;; 30 *qnx[[67]]*) LOCAL_LIBS="-lncurses" ;; 31 *qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;;