blob: 92a2885895b1a2bd061a6d9f18873cbbc98a1768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- me091011-orig/src/linux26.gmk
+++ me091011/src/linux26.gmk
@@ -66,12 +66,7 @@
# accomplish this try to compile test.c and see if it can link termcap. For
# Linux 2.6 then preference would appear to be "ncurses" rather than "termcap".
#
-test = $(shell echo "\#include <stdio.h>" > _t.c ; echo "main() { printf(\"HW\n\"); }" >> _t.c ; $(LD) $(LDFLAGS) -o /dev/null -lncurses _t.c 2>&1 ; rm -f _t.c)
-ifneq "$(strip $(test))" ""
-CONSOLE_LIBS = -ltermcap
-else
CONSOLE_LIBS = -lncurses
-endif
#
# Rules
.SUFFIXES: .c .oc .ow .ob .on .ov .oe .odc .odw .odb .odn .odv .ode
|