diff options
author | June McEnroe <june@causal.agency> | 2018-02-09 17:26:16 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-02-09 17:26:16 -0500 |
commit | b539a8741c9e1bee206597a57ee2bc7831c56c4a (patch) | |
tree | b6984a8ae889b7a20f85e1e98d641fdb99970116 /bin | |
parent | Fix X11 KeySym lookup with modifiers (diff) | |
download | src-b539a8741c9e1bee206597a57ee2bc7831c56c4a.tar.gz src-b539a8741c9e1bee206597a57ee2bc7831c56c4a.zip |
Link -lncurses
Apparently the curses link doesn't exist everywhere.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile index ffbde39a..f9c5811c 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 = -lcurses -ledit -lutil -lz +LDLIBS = -ledit -lncurses -lutil -lz LDLIBS_cocoa = -framework Cocoa LDLIBS_x11 = -lX11 |