mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
perf tools: Move libaudit check config into config/Makefile
Moving libaudit 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-9-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
0e433feb10
commit
a8279525f4
2 changed files with 12 additions and 8 deletions
|
@ -505,14 +505,7 @@ ifndef NO_LIBUNWIND
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef NO_LIBAUDIT
|
ifndef NO_LIBAUDIT
|
||||||
FLAGS_LIBAUDIT = $(ALL_CFLAGS) $(ALL_LDFLAGS) -laudit
|
|
||||||
ifneq ($(call try-cc,$(SOURCE_LIBAUDIT),$(FLAGS_LIBAUDIT),libaudit),y)
|
|
||||||
msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
|
|
||||||
else
|
|
||||||
BASIC_CFLAGS += -DLIBAUDIT_SUPPORT
|
|
||||||
BUILTIN_OBJS += $(OUTPUT)builtin-trace.o
|
BUILTIN_OBJS += $(OUTPUT)builtin-trace.o
|
||||||
EXTLIBS += -laudit
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef NO_SLANG
|
ifndef NO_SLANG
|
||||||
|
|
|
@ -197,3 +197,14 @@ ifndef NO_LIBUNWIND
|
||||||
BASIC_CFLAGS := $(LIBUNWIND_CFLAGS) $(BASIC_CFLAGS)
|
BASIC_CFLAGS := $(LIBUNWIND_CFLAGS) $(BASIC_CFLAGS)
|
||||||
BASIC_LDFLAGS := $(LIBUNWIND_LDFLAGS) $(BASIC_LDFLAGS)
|
BASIC_LDFLAGS := $(LIBUNWIND_LDFLAGS) $(BASIC_LDFLAGS)
|
||||||
endif # NO_LIBUNWIND
|
endif # NO_LIBUNWIND
|
||||||
|
|
||||||
|
ifndef NO_LIBAUDIT
|
||||||
|
FLAGS_LIBAUDIT = $(ALL_CFLAGS) $(ALL_LDFLAGS) -laudit
|
||||||
|
ifneq ($(call try-cc,$(SOURCE_LIBAUDIT),$(FLAGS_LIBAUDIT),libaudit),y)
|
||||||
|
msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
|
||||||
|
NO_LIBAUDIT := 1
|
||||||
|
else
|
||||||
|
BASIC_CFLAGS += -DLIBAUDIT_SUPPORT
|
||||||
|
EXTLIBS += -laudit
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue