Vanilla Development Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla



Date:	Monday March 15, 1999 @ 1:43
Author:	tanner

Update of /home/netrek/cvsroot/Vanilla
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv673

Modified Files:
	config.h.in configure configure.in 
Log Message:
Couple of changed to config.h.in and configure.in to set somethings up for
res-rsa US stuff. 



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

Index: Vanilla/config.h.in
diff -u Vanilla/config.h.in:1.9 Vanilla/config.h.in:1.10
--- Vanilla/config.h.in:1.9	Sun Mar 14 19:38:04 1999
+++ Vanilla/config.h.in	Mon Mar 15 01:43:40 1999
@@ -1,6 +1,10 @@
 /*      Netrek Configuration file       -              by Kurt Siegl
  *
  * $Log: config.h.in,v $
+ * Revision 1.10  1999/03/15 07:43:40  tanner
+ * Couple of changed to config.h.in and configure.in to set somethings up for
+ * res-rsa US stuff.
+ *
  * Revision 1.9  1999/03/15 01:38:04  tanner
  * Reversed all previous changes to the Makefiles regarding the includes of
  * specific files.
@@ -429,6 +433,8 @@
 
 /* Automatic generated system dependend defines 			*/
 
+#undef HAVE_MATH_H
+#undef HAVE_STDLIB_H
 #undef _ALL_SOURCES
 #undef BSD_SIGNALS 
 #undef SYSV_SIGNALS 
@@ -818,17 +824,17 @@
 #define SHMFLAG         0
 #endif
 
-#ifdef sun3
+#if defined(sun3)
 #define INC_STDLIB 	NULLFILE
 #else
 #define INC_STDLIB	<stdlib.h>
 #endif
 
 #ifndef sun4
-#ifdef HAVE_NINT
+#if defined(HAVE_NINT) && defined(HAVE_MATH_H)
 #define INC_MATH	<math.h>
 #else
-#ifdef NEED_RINT_DEC
+#if defined(NEED_RINT_DEC)
 extern double rint(double);
 #define INC_MATH        NULLFILE
 #else
Index: Vanilla/configure
diff -u Vanilla/configure:1.13 Vanilla/configure:1.14
--- Vanilla/configure:1.13	Sat Mar 13 03:01:41 1999
+++ Vanilla/configure	Mon Mar 15 01:43:40 1999
@@ -1152,7 +1152,7 @@
 
 fi
 
-for ac_hdr in unistd.h memory.h
+for ac_hdr in unistd.h memory.h math.h stdlib.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
Index: Vanilla/configure.in
diff -u Vanilla/configure.in:1.13 Vanilla/configure.in:1.14
--- Vanilla/configure.in:1.13	Sat Mar 13 03:01:41 1999
+++ Vanilla/configure.in	Mon Mar 15 01:43:40 1999
@@ -91,7 +91,7 @@
 #--------------------------------------------------------------------
 
 AC_HEADER_STDC
-AC_CHECK_HEADERS(unistd.h memory.h)
+AC_CHECK_HEADERS(unistd.h memory.h math.h stdlib.h)
 AC_CHECK_HEADERS(sys/timeb.h sys/ptyio.h sys/fcntl.h fcntl.h)
 AC_CHECK_HEADERS(ctype.h machine/endian.h sys/resource.h)
 AC_CHECK_HEADERS(sys/wait.h netinet/in.h sys/filio.h)