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.
This commit is contained in:
John "Elwin" Edwards 2016-02-12 15:12:37 -05:00
parent c4365554c4
commit eab5aa2ec4
3 changed files with 3 additions and 3 deletions

View file

@ -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@