Date:	Saturday April 28, 2001 @ 3:28
Author:	cameron

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

Modified Files:
	ChangeLog config.h.in configure configure.in 
Log Message:
	* configure.in, config.h.in: undo #define of INL that Benjamin
	inserted, as it was causing commands.c compilation to fail.


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

Index: Vanilla/ChangeLog
diff -u Vanilla/ChangeLog:1.117 Vanilla/ChangeLog:1.118
--- Vanilla/ChangeLog:1.117	Fri Apr 27 23:38:56 2001
+++ Vanilla/ChangeLog	Sat Apr 28 03:28:30 2001
@@ -1,3 +1,8 @@
+Sat Apr 28 18:15:01 2001  James Cameron  <quozl at us.netrek.org>
+
+	* configure.in, config.h.in: undo #define of INL that Benjamin
+	inserted, as it was causing commands.c compilation to fail.
+
 Sat Apr 28 14:32:02 2001  James Cameron  <quozl at us.netrek.org>
 
 	* robots/inl.c: change default gametime to 60 20 on request of Tom
@@ -1232,4 +1237,4 @@
  	update_sys_defaults in updateMessages to a more appropriate
  	location - updateClient in socket.c.
 	
-	$Id: ChangeLog,v 1.117 2001/04/28 04:38:56 cameron Exp $
+	$Id: ChangeLog,v 1.118 2001/04/28 08:28:30 cameron Exp $
Index: Vanilla/config.h.in
diff -u Vanilla/config.h.in:1.26 Vanilla/config.h.in:1.27
--- Vanilla/config.h.in:1.26	Thu Apr 26 19:45:18 2001
+++ Vanilla/config.h.in	Sat Apr 28 03:28:30 2001
@@ -207,9 +207,6 @@
                                                      README.LTD for details.
                                                      THIS BREAKS PLAYERDB
                                                      COMPATIBILITY!! */
-#undef INL
-				/* INL		   - Compile a server
-						     with INL mode */
 
 #undef LTD_STATS
 
Index: Vanilla/configure
diff -u Vanilla/configure:1.19 Vanilla/configure:1.20
--- Vanilla/configure:1.19	Thu Apr 26 19:45:18 2001
+++ Vanilla/configure	Sat Apr 28 03:28:30 2001
@@ -573,22 +573,22 @@
   # Check whether --with-inl or --without-inl was given.
 if test "${with_inl+set}" = set; then
   withval="$with_inl"
-  INL=yes
+  INL=1
+else
+  INL=0
 fi
-
-  if test "x$INL" = xyes ; then
-	cat >> confdefs.h <<\EOF
-#define INL 1
-EOF
 
-	cat >> confdefs.h <<\EOF
+  if test "x$INL" = x1 ; then
+    #
+    cat >> confdefs.h <<\EOF
 #define LTD_STATS 1
 EOF
 
-	cat >> confdefs.h <<\EOF
+    cat >> confdefs.h <<\EOF
 #define LTD_PER_RACE 1
 EOF
 
+    #
   fi
 
   # Check whether --with-gum or --without-gum was given.
@@ -4156,7 +4156,7 @@
 	sequencer/Makefile newstartd/Makefile robots/Makefile
 	keycomp/Makefile xsg/Makefile pledit/Makefile robotd/Makefile
 	docs/Makefile tools/no_geno_timer tools/geno_timer
-	docs/sample_geno_timer_crontab config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
+	docs/sample_geno_timer_crontab docs/sample_sysdef config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
 cat >> $CONFIG_STATUS <<EOF
 
@@ -4260,7 +4260,7 @@
 	sequencer/Makefile newstartd/Makefile robots/Makefile
 	keycomp/Makefile xsg/Makefile pledit/Makefile robotd/Makefile
 	docs/Makefile tools/no_geno_timer tools/geno_timer
-	docs/sample_geno_timer_crontab"}
+	docs/sample_geno_timer_crontab docs/sample_sysdef"}
 EOF
 cat >> $CONFIG_STATUS <<\EOF
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
Index: Vanilla/configure.in
diff -u Vanilla/configure.in:1.21 Vanilla/configure.in:1.22
--- Vanilla/configure.in:1.21	Fri Apr 27 21:42:34 2001
+++ Vanilla/configure.in	Sat Apr 28 03:28:30 2001
@@ -33,10 +33,10 @@
 
   AC_ARG_WITH(inl, [  --with-inl              INL Mode ], INL=1, INL=0)
   if test "x$INL" = x1 ; then
-	AC_DEFINE(INL)
-	AC_DEFINE(LTD_STATS)
-	AC_DEFINE(LTD_PER_RACE)
-	AC_SUBST(INL)
+    #
+    AC_DEFINE(LTD_STATS)
+    AC_DEFINE(LTD_PER_RACE)
+    #
   fi
 
   AC_ARG_WITH(gum, [  --with-gum              Compile and install gum ],