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 | 2b34181c8af58b3183c66eb91c272902e6297664 (patch) | |
tree | 55326b8846f3cde5be707325765324f3ec24ec0f | |
parent | Fix scheme indentation (diff) | |
download | src-2b34181c8af58b3183c66eb91c272902e6297664.tar.gz src-2b34181c8af58b3183c66eb91c272902e6297664.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 |