Date:	Monday April 23, 2001 @ 18:39
Author:	cameron

Update of /home/netrek/cvsroot/Vanilla
In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv16358

Modified Files:
	ChangeLog configure.in 
Log Message:
	* configure.in: check for ncurses before curses.
	
	* pledit/Makefile (LIBS): use the curses library found by
	configure.

Message-ID: <20010423130921.A16948 at hell.ambre.net>


****************************************

Index: Vanilla/ChangeLog
diff -u Vanilla/ChangeLog:1.110 Vanilla/ChangeLog:1.111
--- Vanilla/ChangeLog:1.110	Mon Apr 23 03:48:07 2001
+++ Vanilla/ChangeLog	Mon Apr 23 18:39:41 2001
@@ -1,13 +1,22 @@
+Tue Apr 24 09:30:25 2001  Benjamin `Quisar' Lerman  <quisar at quisar.ambre.net>
+
+	* configure.in: check for ncurses before curses.
+	
+	* pledit/Makefile (LIBS): use the curses library found by
+	configure.
+
 Mon Apr 23 18:40:53 2001  James Cameron  <quozl at us.netrek.org>
 
 	* docs/sample_sysdef (DEFUPDATE): change to ten updates per second
 	default, in line with most servers out there.
 
 Thu Feb 22 21:00:12 EST 2001 Dave Ahn <ahn at genocide.netrek.org>
+	
 	* robots/inl.c: Adjust continuous scoring weight formula (again).
 	See README.scores for details.
 	
 Mon Feb 12 23:59:36 EST 2001	Dave Ahn <ahn at genocide.netrek.org>
+	
 	* robots/inlcomm.c: Fix Extra Time message.
 
 Sun Feb 11 16:02:10 2001  Carlos Y. Villalpando  <unbelver at us.netrek.org>
@@ -1152,4 +1161,4 @@
  	update_sys_defaults in updateMessages to a more appropriate
  	location - updateClient in socket.c.
 	
-	$Id: ChangeLog,v 1.110 2001/04/23 08:48:07 cameron Exp $
+	$Id: ChangeLog,v 1.111 2001/04/23 23:39:41 cameron Exp $
Index: Vanilla/configure.in
diff -u Vanilla/configure.in:1.18 Vanilla/configure.in:1.19
--- Vanilla/configure.in:1.18	Fri Mar 19 22:09:36 1999
+++ Vanilla/configure.in	Mon Apr 23 18:39:41 2001
@@ -370,7 +370,9 @@
 AC_CHECK_LIB(termcap, main, [LIBTERMCAP="-ltermcap"]) 
 AC_SUBST(LIBTERMCAP)
 
-AC_CHECK_LIB(curses, newwin, [LIBCURSES="-lcurses"]) 
+AC_CHECK_LIB(ncurses, newwin, [LIBCURSES="-lncurses"], 
+     AC_CHECK_LIB(curses, newwin, [LIBCURSES="-lcurses"])
+) 
 AC_SUBST(LIBCURSES)
 
 fi