]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
perf tools: Move stdlib check config into config/Makefile
authorJiri Olsa <jolsa@redhat.com>
Sun, 17 Mar 2013 23:41:04 +0000 (00:41 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 29 May 2013 11:57:41 +0000 (14:57 +0300)
Moving stdlib check config into config/Makefile.

Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1369398928-9809-15-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/Makefile
tools/perf/config/Makefile

index e4d99c485d6ef60a349fee205ad5447d9369843a..9276576addc625ee39287d6e672c3c36b84fcc6e 100644 (file)
@@ -544,24 +544,6 @@ ifeq ($(NO_PERF_REGS),0)
        endif
 endif
 
-ifndef NO_STRLCPY
-       ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY),y)
-               BASIC_CFLAGS += -DHAVE_STRLCPY
-       endif
-endif
-
-ifndef NO_ON_EXIT
-       ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT),y)
-               BASIC_CFLAGS += -DHAVE_ON_EXIT
-       endif
-endif
-
-ifndef NO_BACKTRACE
-       ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DBACKTRACE_SUPPORT),y)
-               BASIC_CFLAGS += -DBACKTRACE_SUPPORT
-       endif
-endif
-
 ifndef NO_LIBNUMA
        FLAGS_LIBNUMA = $(ALL_CFLAGS) $(ALL_LDFLAGS) -lnuma
        ifneq ($(call try-cc,$(SOURCE_LIBNUMA),$(FLAGS_LIBNUMA),libnuma),y)
index 317dafee92e4a4e0395846121ee984a6be629a44..8c0e43f16ea0c8bed912e93780b7462d1977508e 100644 (file)
@@ -361,3 +361,21 @@ else
                endif
        endif
 endif
+
+ifndef NO_STRLCPY
+       ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY),y)
+               BASIC_CFLAGS += -DHAVE_STRLCPY
+       endif
+endif
+
+ifndef NO_ON_EXIT
+       ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT),y)
+               BASIC_CFLAGS += -DHAVE_ON_EXIT
+       endif
+endif
+
+ifndef NO_BACKTRACE
+       ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DBACKTRACE_SUPPORT),y)
+               BASIC_CFLAGS += -DBACKTRACE_SUPPORT
+       endif
+endif