patches/strace/4.5.16/170-undef-PACKET_MEMBERSHIP.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 746 b150d6f590fc
permissions -rw-r--r--
all: fix wildcard to work with make-4.x

In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
     1 diff -dur strace-4.5.16.orig/net.c strace-4.5.16/net.c
     2 --- strace-4.5.16.orig/net.c	2006-12-13 20:57:23.000000000 +0100
     3 +++ strace-4.5.16/net.c	2007-07-14 19:29:36.000000000 +0200
     4 @@ -800,8 +800,12 @@
     5 
     6  #ifdef SOL_PACKET
     7  static const struct xlat sockpacketoptions[] = {
     8 +#if defined(PACKET_ADD_MEMBERSHIP)
     9  	{ PACKET_ADD_MEMBERSHIP,	"PACKET_ADD_MEMBERSHIP"	},
    10 +#endif
    11 +#if defined(PACKET_DROP_MEMBERSHIP)
    12  	{ PACKET_DROP_MEMBERSHIP,	"PACKET_DROP_MEMBERSHIP"},
    13 +#endif
    14  #if defined(PACKET_RECV_OUTPUT)
    15  	{ PACKET_RECV_OUTPUT,		"PACKET_RECV_OUTPUT"	},
    16  #endif