summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2022-05-21 13:41:52 +0200
committerDirk Engling <erdgeist@erdgeist.org>2022-05-21 13:41:52 +0200
commit18916eadbf15261b7462f7da95eaeea4a8a94e21 (patch)
treea89488f559385a8651465d6ad445b7e39df2601b
parentedfdca576a5c0dc504c0fac6d1914501e484a31b (diff)
Make ncurses default again
-rwxr-xr-xMakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c0c2225..475d5e3 100755
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,10 @@
8 8
9OBJS = vchat-client.o vchat-ui.o vchat-protocol.o vchat-user.o vchat-commands.o vchat-tls.o vchat-connection.o 9OBJS = vchat-client.o vchat-ui.o vchat-protocol.o vchat-user.o vchat-commands.o vchat-tls.o vchat-connection.o
10 10
11LIBS = -lncursesw 11# On FreeBSD you might want to link -ncursesw
12LIBS = -lncurses
13#LIBS = -lncursesw
14
12LIBS += -lreadline 15LIBS += -lreadline
13 16
14CFLAGS += -Wall -Os 17CFLAGS += -Wall -Os