From eab5aa2ec4fbb4157e112f533be503b797d066b9 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Fri, 12 Feb 2016 15:12:37 -0500 Subject: [PATCH] Fix curses library detection. A custom autoconf macro searched for the curses library, and provided an option to use ncurses instead of a (presumably deficient) curses implementation. Unfortunately, some of the Makefiles ignored the search's results. Now that this is fixed, building against pdcurses should be easier too. --- arogue5/Makefile.in | 2 +- rogue3/Makefile.in | 2 +- srogue/Makefile.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arogue5/Makefile.in b/arogue5/Makefile.in index 42b13bd..3383267 100644 --- a/arogue5/Makefile.in +++ b/arogue5/Makefile.in @@ -54,7 +54,7 @@ DOCS= arogue58.doc arogue58.html CC = gcc CPPFLAGS =@DEFS@ CFLAGS= -CRLIB = -lcurses +CRLIB = @LIBS@ RM = rm -f TAR = tar INSTALL=@INSTALL@ diff --git a/rogue3/Makefile.in b/rogue3/Makefile.in index 32a09e5..e7d893b 100644 --- a/rogue3/Makefile.in +++ b/rogue3/Makefile.in @@ -57,7 +57,7 @@ CPPFLAGS =@DEFS@ ROPTS = COPTS = CFLAGS= $(COPTS) $(ROPTS) -LIBS = -lcurses +LIBS = @LIBS@ RM = rm -f LD = $(CC) LDOUT = -o diff --git a/srogue/Makefile.in b/srogue/Makefile.in index 3152986..1323451 100644 --- a/srogue/Makefile.in +++ b/srogue/Makefile.in @@ -44,7 +44,7 @@ MISC= Makefile LICENSE.TXT rogue.nr CC = gcc CFLAGS= CPPFLAGS=@DEFS@ -CRLIB = -lcurses +CRLIB = @LIBS@ RM = rm -f TAR = tar INSTALL=@INSTALL@