From 03dabaf236130eb13a91d57dd59ff960e5d99abb Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 23 Jul 2018 16:03:52 -0400 Subject: Link with -lcurses Turns out that NetBSD has its own curses implementation and I'm all for not linking GNU software <3 --- bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') 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 -- cgit 1.4.1