summaryrefslogtreecommitdiff
path: root/core/makefile
diff options
context:
space:
mode:
authorruki <[email protected]>2017-12-06 22:27:42 +0800
committerruki <[email protected]>2017-12-08 14:10:23 +0800
commitabe87994168053e4f420a8b7ab286c65b546eaae (patch)
tree2b245ac984055954a5407198edc26128ef173984 /core/makefile
parent330e8a895d4706bcc6b2247990fb72a70f54f377 (diff)
disable halfdelay for curses
Diffstat (limited to 'core/makefile')
-rw-r--r--core/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/makefile b/core/makefile
index 236e6a028..478fca71f 100644
--- a/core/makefile
+++ b/core/makefile
@@ -261,7 +261,7 @@ endif
ifeq ($(PLAT),linux)
base_LIBPATH :=
base_LIBNAMES :=
-base_LIBNAMES += $(shell if { cat detect/curses.c | $(CC) -xc - -lcurses -o /dev/null 2>/dev/null; }; then echo curses tinfo; fi )
+base_LIBNAMES += $(shell if { cat detect/curses.c | $(CC) -xc - -lcurses -o /dev/null 2>/dev/null; }; then echo curses; fi )
base_LIBNAMES += $(shell if { cat detect/readline.c | $(CC) -xc - -lreadline -o /dev/null 2>/dev/null; }; then echo readline; fi )
base_LIBNAMES += m dl pthread
endif