From b539a8741c9e1bee206597a57ee2bc7831c56c4a Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 9 Feb 2018 17:26:16 -0500 Subject: Link -lncurses Apparently the curses link doesn't exist everywhere. --- bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/Makefile') 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 -- cgit 1.4.1 mit collaborative ASCII art
about summary refs log tree commit diff homepage
path: root/torus.h (unfollow)
Commit message (Expand)Author
2017-07-31Track tile access countsJune McEnroe
2017-07-31Adjust move speed in clientJune McEnroe
2017-07-31Handle large movesJune McEnroe
2017-07-30Optimize builds for chrootJune McEnroe
2017-07-30Persist bright across color changesJune McEnroe
2017-07-30Add index.htmlJune McEnroe
2017-07-30Add snapshot.shJune McEnroe
2017-07-30Fix termcap patch for background colorsJune McEnroe
2017-07-30Update helpJune McEnroe
2017-07-30Fix help to track colorJune McEnroe
2017-07-30Support background colorsJune McEnroe
2017-07-30Track color only client-sideJune McEnroe
2017-07-30Add ostensible support for background colorsJune McEnroe
2017-07-30Add tile create and access timestampsJune McEnroe
2017-07-30Assert stable struct Tile field offsetsJune McEnroe
2017-07-30Add chroot.shJune McEnroe
2017-07-30Add ` commandJune McEnroe
2017-07-30Add sshd_configJune McEnroe
2017-07-30Add termcap patchJune McEnroe