cvs-dev
[Top][All Lists]
Advanced

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

Re: [Cvs-dev] Re: [Cvs-test-results] Build CVS (TRUNK) failed.


From: Mark D. Baushke
Subject: Re: [Cvs-dev] Re: [Cvs-test-results] Build CVS (TRUNK) failed.
Date: Mon, 12 Jun 2006 09:44:08 -0700

Hi Larry,

Could you try this patch on the SGI system and see
if it does the right thing?

        Thanks,
        -- Mark

Index: configure
===================================================================
RCS file: /cvsroot/cvs/ccvs/configure,v
retrieving revision 1.453
diff -u -p -r1.453 configure
--- configure   8 Jun 2006 21:06:12 -0000       1.453
+++ configure   12 Jun 2006 16:41:37 -0000
@@ -28416,7 +28416,7 @@ cat >>conftest.$ac_ext <<_ACEOF
 int
 main ()
 {
-
+intmax_t i = -1; return i != 0;
   ;
   return 0;
 }
Index: m4/ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/m4/ChangeLog,v
retrieving revision 1.169
diff -u -p -r1.169 ChangeLog
--- m4/ChangeLog        22 May 2006 23:58:59 -0000      1.169
+++ m4/ChangeLog        12 Jun 2006 16:41:38 -0000
@@ -1,3 +1,10 @@
+2006-06-12  Paul Eggert  <address@hidden>
+
+       * m4/stdint.m4 (gl_STDINT_H): Reject <stdint.h> if it
+       doesn't declare intmax_t.  Problem reported by
+       Larry Jones and Derek Price in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00030.html>.
+
 2006-05-22  Mark D. Baushke  <address@hidden>
 
        * nanosleep.m4: Update from gnulib.
Index: m4/stdint.m4
===================================================================
RCS file: /cvsroot/cvs/ccvs/m4/stdint.m4,v
retrieving revision 1.4
diff -u -p -r1.4 stdint.m4
--- m4/stdint.m4        25 Jan 2006 12:53:43 -0000      1.4
+++ m4/stdint.m4        12 Jun 2006 16:41:38 -0000
@@ -17,7 +17,7 @@ AC_CHECK_HEADERS([sys/bitypes.h])
 
 AC_MSG_CHECKING([for stdint.h])
 AC_CACHE_VAL(gl_cv_header_stdint_h, [
-  AC_TRY_COMPILE([#include <stdint.h>], [],
+  AC_TRY_COMPILE([#include <stdint.h>], [intmax_t i = -1; return i != 0;],
     gl_cv_header_stdint_h=yes, gl_cv_header_stdint_h=no)])
 AC_MSG_RESULT([$gl_cv_header_stdint_h])
 if test $gl_cv_header_stdint_h = yes; then




reply via email to

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