From bb9a79a30d87adba9b3148ecf0ffea2805f55464 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 2 Sep 2019 16:12:58 +0100 Subject: [PATCH] Link to curses rather than ncurses NetBSD doesn't have ncurses and sl works fine after PR#63 is merged. ncurses default install allows linking via -lcurses as well. Let's work with both. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3005d2d..86fddd78 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ CFLAGS=-O -Wall all: sl sl: sl.c sl.h - $(CC) $(CFLAGS) -o sl sl.c -lncurses + $(CC) $(CFLAGS) -o sl sl.c -lcurses clean: rm -f sl