patches/strace/4.5.19/140-undef-CTL_PROC.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sat Jul 14 18:25:47 2012 +0200 (2012-07-14)
changeset 2999 4ccfca658d9b
permissions -rw-r--r--
configure: check for GNU awk, not any awk

Building glibc requires GNU awk, not any other.

Reported-by: Han Sooloo <hansooloo@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 diff -durN strace-4.5.19.orig/system.c strace-4.5.19/system.c
     2 --- strace-4.5.19.orig/system.c	2009-06-01 11:59:11.000000000 +0200
     3 +++ strace-4.5.19/system.c	2009-10-28 18:47:18.000000000 +0100
     4 @@ -1654,7 +1654,9 @@
     5  	{ CTL_KERN, "CTL_KERN" },
     6  	{ CTL_VM, "CTL_VM" },
     7  	{ CTL_NET, "CTL_NET" },
     8 +#ifdef CTL_PROC
     9  	{ CTL_PROC, "CTL_PROC" },
    10 +#endif
    11  	{ CTL_FS, "CTL_FS" },
    12  	{ CTL_DEBUG, "CTL_DEBUG" },
    13  	{ CTL_DEV, "CTL_DEV" },