# HG changeset patch
# User John "Elwin" Edwards
# Date 1455307957 18000
# Node ID a666e4a034ed3a5c3c135d2319dc6cc45325f2b0
# Parent  71cb5b647f2b547d9eb0953a42cf978f34b61b53
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.

diff -r 71cb5b647f2b -r a666e4a034ed arogue5/Makefile.in
--- a/arogue5/Makefile.in	Fri Feb 12 14:25:47 2016 -0500
+++ b/arogue5/Makefile.in	Fri Feb 12 15:12:37 2016 -0500
@@ -54,7 +54,7 @@
 CC    = gcc
 CPPFLAGS =@DEFS@
 CFLAGS=
-CRLIB = -lcurses
+CRLIB = @LIBS@
 RM    = rm -f
 TAR   = tar
 INSTALL=@INSTALL@
diff -r 71cb5b647f2b -r a666e4a034ed rogue3/Makefile.in
--- a/rogue3/Makefile.in	Fri Feb 12 14:25:47 2016 -0500
+++ b/rogue3/Makefile.in	Fri Feb 12 15:12:37 2016 -0500
@@ -57,7 +57,7 @@
 ROPTS =
 COPTS =
 CFLAGS= $(COPTS) $(ROPTS)
-LIBS  = -lcurses
+LIBS  = @LIBS@
 RM    = rm -f
 LD    = $(CC)
 LDOUT = -o 
diff -r 71cb5b647f2b -r a666e4a034ed srogue/Makefile.in
--- a/srogue/Makefile.in	Fri Feb 12 14:25:47 2016 -0500
+++ b/srogue/Makefile.in	Fri Feb 12 15:12:37 2016 -0500
@@ -44,7 +44,7 @@
 CC    = gcc
 CFLAGS=
 CPPFLAGS=@DEFS@
-CRLIB = -lcurses
+CRLIB = @LIBS@
 RM    = rm -f
 TAR   = tar
 INSTALL=@INSTALL@