Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-20.03 29 lines 1.3 kB view raw
1diff -u ./configure ../bash-4.4-fixed/configure 2--- ./configure 2016-09-07 22:57:01.000000000 +0200 3+++ ../bash-4.4-fixed/configure 2020-01-08 14:10:26.316858174 +0100 4@@ -16064,10 +16064,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- 2.[456789]*|[34]*) $as_echo "#define PGRP_PIPE 1" >>confdefs.h 10- ;; 11- esac ;; 12+ $as_echo "#define PGRP_PIPE 1" >>confdefs.h ;; 13 *qnx6*) LOCAL_CFLAGS="-Dqnx -Dqnx6" LOCAL_LIBS="-lncurses" ;; 14 *qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;; 15 powerux*) LOCAL_LIBS="-lgen" ;; 16diff -u ./configure.ac ../bash-4.4-fixed/configure.ac 17--- ./configure.ac 2016-09-07 22:56:28.000000000 +0200 18+++ ../bash-4.4-fixed/configure.ac 2016-09-07 22:56:28.000000000 +0200 19@@ -1092,9 +1092,7 @@ 20 solaris2*) LOCAL_CFLAGS=-DSOLARIS ;; 21 lynxos*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;; 22 linux*) LOCAL_LDFLAGS=-rdynamic # allow dynamic loading 23- case "`uname -r`" in 24- 2.[[456789]]*|[[34]]*) AC_DEFINE(PGRP_PIPE) ;; 25- esac ;; 26+ AC_DEFINE(PGRP_PIPE) ;; 27 *qnx6*) LOCAL_CFLAGS="-Dqnx -Dqnx6" LOCAL_LIBS="-lncurses" ;; 28 *qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;; 29 powerux*) LOCAL_LIBS="-lgen" ;;