[tip:perfcounters/core] perf tools: Remove obsolete defines

From: tip-bot for Ingo Molnar
Date: Tue Aug 18 2009 - 05:16:24 EST


Commit-ID: 1f18345bdfd489fde1085bc85839d5d3645cf511
Gitweb: http://git.kernel.org/tip/1f18345bdfd489fde1085bc85839d5d3645cf511
Author: Ingo Molnar <mingo@xxxxxxx>
AuthorDate: Tue, 18 Aug 2009 10:59:47 +0200
Committer: Ingo Molnar <mingo@xxxxxxx>
CommitDate: Tue, 18 Aug 2009 11:00:05 +0200

perf tools: Remove obsolete defines

The _XOPEN_SOURCE* defines are not really needed on Linux and
it's not like we'll port this to AIX ;-)

The define also broke the build with gcc 4.4.1:

CC util/trace-event-parse.o
In file included from util/trace-event-parse.c:32:
util/util.h:43:1: error: "_XOPEN_SOURCE" redefined

So remove them.

Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
Cc: Mike Galbraith <efault@xxxxxx>
Cc: Paul Mackerras <paulus@xxxxxxxxx>
Cc: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
Cc: Frederic Weisbecker <fweisbec@xxxxxxxxx>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@xxxxxxx>


---
tools/perf/util/util.h | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h
index d61a6f0..15004d2 100644
--- a/tools/perf/util/util.h
+++ b/tools/perf/util/util.h
@@ -39,10 +39,6 @@
/* Approximation of the length of the decimal representation of this type. */
#define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1)

-#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX)
-#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
-#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
-#endif
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _BSD_SOURCE 1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/