about summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-10-14 19:50:44 -0400
committerJune McEnroe <june@causal.agency>2018-10-14 19:50:44 -0400
commit54f2d53263221ce96bb8073122511adeb87df68d (patch)
tree687a9c53224d891a02e88ca8370a2aaaa2b09a94 /Makefile
parentReplace torus.7 with torus.1 (diff)
downloadtorus-54f2d53263221ce96bb8073122511adeb87df68d.tar.gz
torus-54f2d53263221ce96bb8073122511adeb87df68d.zip
Add server daemonization
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 776a032..3b3a08a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CHROOT_GROUP = $(CHROOT_USER)
 
 CFLAGS += -Wall -Wextra -Wpedantic
 LDFLAGS += -static
-LDLIBS = -lcursesw -lz
+LDLIBS = -lcursesw -lutil -lz
 BINS = server client image meta merge
 OBJS = $(BINS:%=%.o)
 
&follow=1'>Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe For some reason I haven't been able to figure out, trying to poll /dev/tty returns POLLNVAL (and this was using 100% CPU looping), but using stderr instead works fine. 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe