diff options
| -rw-r--r-- | tools/perf/Makefile | 7 | ||||
| -rw-r--r-- | tools/perf/builtin-probe.c | 2 | ||||
| -rw-r--r-- | tools/perf/util/probe-event.c | 2 | ||||
| -rw-r--r-- | tools/perf/util/symbol.c | 1 | ||||
| -rw-r--r-- | tools/perf/util/trace-event-parse.c | 3 | ||||
| -rw-r--r-- | tools/perf/util/ui/browsers/hists.c | 2 | ||||
| -rw-r--r-- | tools/perf/util/ui/helpline.c | 1 | ||||
| -rw-r--r-- | tools/perf/util/util.h | 1 | 
8 files changed, 3 insertions, 16 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 599031ac69a..d64f5819a38 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile @@ -104,7 +104,7 @@ endif  CFLAGS = -fno-omit-frame-pointer -ggdb3 -Wall -Wextra -std=gnu99 $(CFLAGS_WERROR) $(CFLAGS_OPTIMIZE) -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS)  EXTLIBS = -lpthread -lrt -lelf -lm -ALL_CFLAGS = $(CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 +ALL_CFLAGS = $(CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE  ALL_LDFLAGS = $(LDFLAGS)  STRIP ?= strip @@ -168,10 +168,7 @@ endif  ### --- END CONFIGURATION SECTION --- -# Those must not be GNU-specific; they are shared with perl/ which may -# be built by a different compiler. (Note that this is an artifact now -# but it still might be nice to keep that distinction.) -BASIC_CFLAGS = -Iutil/include -Iarch/$(ARCH)/include +BASIC_CFLAGS = -Iutil/include -Iarch/$(ARCH)/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE  BASIC_LDFLAGS =  # Guard against environment variables diff --git a/tools/perf/builtin-probe.c b/tools/perf/builtin-probe.c index 59d43abfbfe..fb8566181f2 100644 --- a/tools/perf/builtin-probe.c +++ b/tools/perf/builtin-probe.c @@ -20,7 +20,6 @@   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.   *   */ -#define _GNU_SOURCE  #include <sys/utsname.h>  #include <sys/types.h>  #include <sys/stat.h> @@ -31,7 +30,6 @@  #include <stdlib.h>  #include <string.h> -#undef _GNU_SOURCE  #include "perf.h"  #include "builtin.h"  #include "util/util.h" diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index eb25900e221..29cb6545981 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c @@ -19,7 +19,6 @@   *   */ -#define _GNU_SOURCE  #include <sys/utsname.h>  #include <sys/types.h>  #include <sys/stat.h> @@ -33,7 +32,6 @@  #include <limits.h>  #include <elf.h> -#undef _GNU_SOURCE  #include "util.h"  #include "event.h"  #include "string.h" diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index 215d50f2042..0975438c3e7 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c @@ -1,4 +1,3 @@ -#define _GNU_SOURCE  #include <ctype.h>  #include <dirent.h>  #include <errno.h> diff --git a/tools/perf/util/trace-event-parse.c b/tools/perf/util/trace-event-parse.c index 6c164dc9ee9..1a8d4dc4f38 100644 --- a/tools/perf/util/trace-event-parse.c +++ b/tools/perf/util/trace-event-parse.c @@ -21,14 +21,13 @@   *  The parts for function graph printing was taken and modified from the   *  Linux Kernel that were written by Frederic Weisbecker.   */ -#define _GNU_SOURCE +  #include <stdio.h>  #include <stdlib.h>  #include <string.h>  #include <ctype.h>  #include <errno.h> -#undef _GNU_SOURCE  #include "../perf.h"  #include "util.h"  #include "trace-event.h" diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c index 7b6669d1f11..bfba0490c09 100644 --- a/tools/perf/util/ui/browsers/hists.c +++ b/tools/perf/util/ui/browsers/hists.c @@ -1,6 +1,4 @@ -#define _GNU_SOURCE  #include <stdio.h> -#undef _GNU_SOURCE  #include "../libslang.h"  #include <stdlib.h>  #include <string.h> diff --git a/tools/perf/util/ui/helpline.c b/tools/perf/util/ui/helpline.c index 6ef3c569176..4f48f5901b3 100644 --- a/tools/perf/util/ui/helpline.c +++ b/tools/perf/util/ui/helpline.c @@ -1,4 +1,3 @@ -#define _GNU_SOURCE  #include <stdio.h>  #include <stdlib.h>  #include <string.h> diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h index 061dbf8c038..232d17ef3e6 100644 --- a/tools/perf/util/util.h +++ b/tools/perf/util/util.h @@ -40,7 +40,6 @@  #define decimal_length(x)	((int)(sizeof(x) * 2.56 + 0.5) + 1)  #define _ALL_SOURCE 1 -#define _GNU_SOURCE 1  #define _BSD_SOURCE 1  #define HAS_BOOL  |