guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core configure.in ChangeLog


From: Gary Houston
Subject: guile/guile-core configure.in ChangeLog
Date: Sun, 14 Oct 2001 17:21:20 -0400

CVSROOT:        /cvs
Module name:    guile
Changes by:     Gary Houston <address@hidden>   01/10/14 17:21:20

Modified files:
        guile-core     : configure.in ChangeLog 

Log message:
        * configure.in: include sys/types.h when testing uint32_t.
        thanks to Bill Schottstaedt.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/configure.in.diff?cvsroot=OldCVS&tr1=1.167&tr2=1.168&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/ChangeLog.diff?cvsroot=OldCVS&tr1=1.303&tr2=1.304&r1=text&r2=text

Patches:
Index: guile/guile-core/ChangeLog
diff -u guile/guile-core/ChangeLog:1.303 guile/guile-core/ChangeLog:1.304
--- guile/guile-core/ChangeLog:1.303    Sun Oct 14 16:08:20 2001
+++ guile/guile-core/ChangeLog  Sun Oct 14 17:21:20 2001
@@ -1,3 +1,8 @@
+2001-10-14  Gary Houston  <address@hidden>
+
+       * configure.in: include sys/types.h when testing uint32_t.
+       thanks to Bill Schottstaedt.
+
 2001-10-14  Marius Vollmer  <address@hidden>
 
        * configure.in: Do not use an absolute path for <unistd.h> when
Index: guile/guile-core/configure.in
diff -u guile/guile-core/configure.in:1.167 guile/guile-core/configure.in:1.168
--- guile/guile-core/configure.in:1.167 Sun Oct 14 16:08:08 2001
+++ guile/guile-core/configure.in       Sun Oct 14 17:21:19 2001
@@ -309,11 +309,12 @@
   AC_DEFINE(HAVE_H_ERRNO)
 fi
 
-AC_MSG_CHECKING(whether netdb.h defines uint32_t)
+AC_MSG_CHECKING(whether uint32_t is defined)
 AC_CACHE_VAL(guile_cv_have_uint32_t,
-[AC_TRY_COMPILE([#include <netdb.h>],
-[uint32_t a;],
-guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
+  [AC_TRY_COMPILE([#include <sys/types.h>
+                  #include <netdb.h>],
+                 [uint32_t a;],
+                 guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
 AC_MSG_RESULT($guile_cv_have_uint32_t)
 if test $guile_cv_have_uint32_t = yes; then
   AC_DEFINE(HAVE_UINT32_T)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]