Commit 4a8f888a authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

perf tools: Move slang check config into config/Makefile

Moving slang check config into config/Makefile.
Signed-off-by: default avatarJiri 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-10-git-send-email-jolsa@redhat.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent a8279525
...@@ -99,10 +99,6 @@ ifeq ($(config),1) ...@@ -99,10 +99,6 @@ ifeq ($(config),1)
include config/Makefile include config/Makefile
endif endif
ifdef NO_NEWT
NO_SLANG=1
endif
# Among the variables below, these: # Among the variables below, these:
# perfexecdir # perfexecdir
# template_dir # template_dir
...@@ -509,28 +505,19 @@ ifndef NO_LIBAUDIT ...@@ -509,28 +505,19 @@ ifndef NO_LIBAUDIT
endif endif
ifndef NO_SLANG ifndef NO_SLANG
FLAGS_SLANG=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -I/usr/include/slang -lslang LIB_OBJS += $(OUTPUT)ui/browser.o
ifneq ($(call try-cc,$(SOURCE_SLANG),$(FLAGS_SLANG),libslang),y) LIB_OBJS += $(OUTPUT)ui/browsers/annotate.o
msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev); LIB_OBJS += $(OUTPUT)ui/browsers/hists.o
else LIB_OBJS += $(OUTPUT)ui/browsers/map.o
# Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h LIB_OBJS += $(OUTPUT)ui/browsers/scripts.o
BASIC_CFLAGS += -I/usr/include/slang LIB_OBJS += $(OUTPUT)ui/tui/setup.o
BASIC_CFLAGS += -DSLANG_SUPPORT LIB_OBJS += $(OUTPUT)ui/tui/util.o
EXTLIBS += -lslang LIB_OBJS += $(OUTPUT)ui/tui/helpline.o
LIB_OBJS += $(OUTPUT)ui/browser.o LIB_OBJS += $(OUTPUT)ui/tui/progress.o
LIB_OBJS += $(OUTPUT)ui/browsers/annotate.o LIB_H += ui/browser.h
LIB_OBJS += $(OUTPUT)ui/browsers/hists.o LIB_H += ui/browsers/map.h
LIB_OBJS += $(OUTPUT)ui/browsers/map.o LIB_H += ui/keysyms.h
LIB_OBJS += $(OUTPUT)ui/browsers/scripts.o LIB_H += ui/libslang.h
LIB_OBJS += $(OUTPUT)ui/tui/setup.o
LIB_OBJS += $(OUTPUT)ui/tui/util.o
LIB_OBJS += $(OUTPUT)ui/tui/helpline.o
LIB_OBJS += $(OUTPUT)ui/tui/progress.o
LIB_H += ui/browser.h
LIB_H += ui/browsers/map.h
LIB_H += ui/keysyms.h
LIB_H += ui/libslang.h
endif
endif endif
ifndef NO_GTK2 ifndef NO_GTK2
......
...@@ -208,3 +208,20 @@ ifndef NO_LIBAUDIT ...@@ -208,3 +208,20 @@ ifndef NO_LIBAUDIT
EXTLIBS += -laudit EXTLIBS += -laudit
endif endif
endif endif
ifdef NO_NEWT
NO_SLANG=1
endif
ifndef NO_SLANG
FLAGS_SLANG=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -I/usr/include/slang -lslang
ifneq ($(call try-cc,$(SOURCE_SLANG),$(FLAGS_SLANG),libslang),y)
msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
NO_SLANG := 1
else
# Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
BASIC_CFLAGS += -I/usr/include/slang
BASIC_CFLAGS += -DSLANG_SUPPORT
EXTLIBS += -lslang
endif
endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment