]> git.mxchange.org Git - simgear.git/commitdiff
Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
authorcurt <curt>
Fri, 24 Apr 1998 00:43:12 +0000 (00:43 +0000)
committercurt <curt>
Fri, 24 Apr 1998 00:43:12 +0000 (00:43 +0000)
Math/MAT3mat.c
Math/fg_random.c

index fe4f3ba4111bee465ba0faf5f6f3929045630a5c..7b1a24c2a31e08d496af218994fb9f0e2644fbe7 100644 (file)
@@ -6,7 +6,9 @@
  * -------------------------------------------------------------------------*/
 
 
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
 
 #ifdef WIN32
 #  include <memory.h>      /* required for memset() and memcpy() */
index 7958c3d6847317e63e77dff37f21c5340f620551..465d892316de0eebca26633119059193c752fc8d 100644 (file)
@@ -24,7 +24,9 @@
  **************************************************************************/
 
 
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>         /* for random(), srandom() */
@@ -73,9 +75,12 @@ double fg_random(void) {
 
 
 /* $Log$
-/* Revision 1.6  1998/04/18 03:53:42  curt
-/* Miscellaneous Tweaks.
+/* Revision 1.7  1998/04/24 00:43:13  curt
+/* Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
 /*
+ * Revision 1.6  1998/04/18 03:53:42  curt
+ * Miscellaneous Tweaks.
+ *
  * Revision 1.5  1998/04/03 22:10:29  curt
  * Converting to Gnu autoconf system.
  *