summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-24 16:52:55 -0400
committerJune McEnroe <june@causal.agency>2018-07-24 16:52:55 -0400
commit333c1574a2722ef5fca8215bf2db9f1dd6885e18 (patch)
treea9f3a1862a294a4f5cd2a8ae041b9f8418415b9b
parentFix NaNs in serverMap (diff)
downloadtorus-333c1574a2722ef5fca8215bf2db9f1dd6885e18.tar.gz
torus-333c1574a2722ef5fca8215bf2db9f1dd6885e18.zip
Link with -lcurses
NetBSD has its own curses implementation and doesn't ship ncurses.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f4de74e..daef391 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 USER = torus
 BINS = server client help meta merge
 CFLAGS += -Wall -Wextra -Wpedantic
-LDLIBS = -lm -lncurses
+LDLIBS = -lm -lcurses
 
 all: tags $(BINS)
 
2019-10-23 23:53:27 -0400'>2019-10-23Add ISUPPORT draft to STANDARDSJune McEnroe 2019-10-23Track own originJune McEnroe 2019-10-23Track channels and sync ISUPPORTJune McEnroe 2019-10-23Track nick changesJune McEnroe 2019-10-23Rename Command to MessageJune McEnroe 2019-10-23Synchronize state after client registrationJune McEnroe 2019-10-23Send to server if client has no needsJune McEnroe 2019-10-23Implement some amount of client connectionJune McEnroe 2019-10-23Set clients non-blockingJune McEnroe 2019-10-23Clean up state.c and factor out parsingJune McEnroe 2019-10-23Respond to pingsJune McEnroe 2019-10-23Add verbose flagJune McEnroe 2019-10-23Set NOSIGPIPE on server connectionJune McEnroe 2019-10-23Set an initial loop capJune McEnroe 2019-10-23Fix rest parsingJune McEnroe 2019-10-23Add dynamic poll listJune McEnroe 2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe 2019-10-23Clean up state somewhatJune McEnroe 2019-10-23Actually send the buffer...June McEnroe 2019-10-23Add stateJune McEnroe