diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-06-20 12:30:07 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-06-20 12:30:07 -0300 |
commit | fd25bf8b8c577aef8c0156eddaf63f3e862c659c (patch) | |
tree | 1ec2e852bae2c38995d783ffe24a0ffa82021376 /tools/perf | |
parent | 44b58e06e8e3872b6741e5aee59a7a93dfe3834a (diff) | |
download | linux-fd25bf8b8c577aef8c0156eddaf63f3e862c659c.tar.gz linux-fd25bf8b8c577aef8c0156eddaf63f3e862c659c.tar.bz2 linux-fd25bf8b8c577aef8c0156eddaf63f3e862c659c.zip |
perf tools: Remove unused _ALL_SOURCE define
Curious as to what this was for I looked at /usr/include/ and only some
python headers define this, and it ends up being to enable "extensions"
on some old OSes:
/* Enable extensions on AIX 3, Interix */
I guess we can remove this one safely.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-omnundlxo2brs552bdl6m0j1@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/util/util.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h index 9ae7e6e35f9a..978572dfeb14 100644 --- a/tools/perf/util/util.h +++ b/tools/perf/util/util.h @@ -1,7 +1,6 @@ #ifndef GIT_COMPAT_UTIL_H #define GIT_COMPAT_UTIL_H -#define _ALL_SOURCE 1 #define _BSD_SOURCE 1 /* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */ #define _DEFAULT_SOURCE 1 |