diff options
author | June McEnroe <june@causal.agency> | 2018-07-23 16:03:52 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-07-23 16:03:52 -0400 |
commit | 03dabaf236130eb13a91d57dd59ff960e5d99abb (patch) | |
tree | 9f47543daf36a9710d706c4de43939b534c8e73c /bin | |
parent | Fix scheme indentation (diff) | |
download | src-03dabaf236130eb13a91d57dd59ff960e5d99abb.tar.gz src-03dabaf236130eb13a91d57dd59ff960e5d99abb.zip |
Link with -lcurses
Turns out that NetBSD has its own curses implementation and I'm all for not linking GNU software <3
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile index 92c02f26..51c11d62 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -5,7 +5,7 @@ ALL_BINS = $(ANY_BINS) $(BSD_BINS) $(LIN_BINS) GFX ?= none CFLAGS += -Wall -Wextra -Wpedantic -LDLIBS = -ledit -lm -lncurses -lutil -lz +LDLIBS = -ledit -lm -lcurses -lutil -lz LDLIBS_cocoa = -framework Cocoa LDLIBS_x11 = -lX11 |