cvs-cvs
[Top][All Lists]
Advanced

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

[Cvs-cvs] ccvs/lib ChangeLog xsize.h [cvs1-11-x-branch]


From: Larry Jones
Subject: [Cvs-cvs] ccvs/lib ChangeLog xsize.h [cvs1-11-x-branch]
Date: Fri, 23 Jun 2006 19:40:45 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Branch:         cvs1-11-x-branch
Changes by:     Larry Jones <scjones>   06/06/23 19:40:45

Modified files:
        lib            : ChangeLog xsize.h 

Log message:
        * xsize.h: Avoid SGI problem with <stdint.h> being unusable in C89
        mode.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/ChangeLog?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.169.2.37&r2=1.169.2.38
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/xsize.h?cvsroot=cvs&only_with_tag=cvs1-11-x-branch&r1=1.3.4.1&r2=1.3.4.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/ChangeLog,v
retrieving revision 1.169.2.37
retrieving revision 1.169.2.38
diff -u -b -r1.169.2.37 -r1.169.2.38
--- ChangeLog   15 Nov 2005 00:10:51 -0000      1.169.2.37
+++ ChangeLog   23 Jun 2006 19:40:44 -0000      1.169.2.38
@@ -1,3 +1,8 @@
+2006-06-23  Larry Jones  <address@hidden>
+
+       * xsize.h: Avoid SGI problem with <stdint.h> being unusable in C89
+       mode.
+
 2005-11-14  Mark D. Baushke  <address@hidden>
 
        * system.h (FOLD_FN_CHAR): Distinguish OSX_ and VMS_ variations

Index: xsize.h
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/xsize.h,v
retrieving revision 1.3.4.1
retrieving revision 1.3.4.2
diff -u -b -r1.3.4.1 -r1.3.4.2
--- xsize.h     9 Jun 2004 13:58:19 -0000       1.3.4.1
+++ xsize.h     23 Jun 2006 19:40:45 -0000      1.3.4.2
@@ -24,7 +24,9 @@
 
 /* Get SIZE_MAX.  */
 #include <limits.h>
-#if HAVE_STDINT_H
+#if HAVE_INTTYPES_H
+# include <inttypes.h>
+#elif HAVE_STDINT_H
 # include <stdint.h>
 #endif
 




reply via email to

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