[kaffe] CVS kaffe (guilhem): Fixlet for config-int.h
Kaffe CVS
cvs-commits at kaffe.org
Sun Jun 19 06:52:32 PDT 2005
PatchSet 6649
Date: 2005/06/19 13:47:14
Author: guilhem
Branch: HEAD
Tag: (none)
Log:
Fixlet for config-int.h
* developers/autogen.sh: Updated to gettext 0.14.5
* m4/ax_create_stdint_h.m4: Check whether UINT8_MIN & INT8_MIN are
already defined.
* configure: Regenerated.
Members:
ChangeLog:1.4175->1.4176
configure:1.459->1.460
developers/autogen.sh:1.59->1.60
m4/ax_create_stdint_h.m4:1.2->1.3
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4175 kaffe/ChangeLog:1.4176
--- kaffe/ChangeLog:1.4175 Sat Jun 18 07:57:18 2005
+++ kaffe/ChangeLog Sun Jun 19 13:47:14 2005
@@ -1,3 +1,12 @@
+2005-06-19 Guilhem Lavaux <guilhem at kaffe.org>
+
+ * developers/autogen.sh: Updated to gettext 0.14.5
+
+ * m4/ax_create_stdint_h.m4: Check whether UINT8_MIN & INT8_MIN are
+ already defined.
+
+ * configure: Regenerated.
+
2005-06-17 Guilhem Lavaux <guilhem at kaffe.org>
* m4/ax_create_stdint_h.m4: Patched to get it work on system without
Index: kaffe/configure
diff -u kaffe/configure:1.459 kaffe/configure:1.460
--- kaffe/configure:1.459 Sat Jun 18 07:57:20 2005
+++ kaffe/configure Sun Jun 19 13:47:19 2005
@@ -53489,6 +53489,7 @@
/* These limits are merily those of a two complement byte-oriented system */
+#if !defined(INT8_MIN)
/* Minimum of signed integral types. */
# define INT8_MIN (-128)
# define INT16_MIN (-32767-1)
@@ -53499,12 +53500,15 @@
# define INT16_MAX (32767)
# define INT32_MAX (2147483647)
# define INT64_MAX (__INT64_C(9223372036854775807))
+#endif
/* Maximum of unsigned integral types. */
+#if !defined(UINT8_MAX)
# define UINT8_MAX (255)
# define UINT16_MAX (65535)
# define UINT32_MAX (4294967295U)
# define UINT64_MAX (__UINT64_C(18446744073709551615))
+#endif
/* Minimum of signed integral types having a minimum size. */
# define INT_LEAST8_MIN INT8_MIN
Index: kaffe/developers/autogen.sh
diff -u kaffe/developers/autogen.sh:1.59 kaffe/developers/autogen.sh:1.60
--- kaffe/developers/autogen.sh:1.59 Thu May 19 09:28:57 2005
+++ kaffe/developers/autogen.sh Sun Jun 19 13:47:26 2005
@@ -19,7 +19,7 @@
WANTED_AUTOMAKE_VERS="1.9.5"
WANTED_AUTOCONF_VERS="2.59"
WANTED_LIBTOOL_VERS="1.5.18"
-WANTED_AUTOPOINT_VERS="0.14.4"
+WANTED_AUTOPOINT_VERS="0.14.5"
ACLOCAL_VERS=`aclocal --version |
sed -n 's,^aclocal (GNU automake) \(.*\)$,\1,p'`
Index: kaffe/m4/ax_create_stdint_h.m4
diff -u kaffe/m4/ax_create_stdint_h.m4:1.2 kaffe/m4/ax_create_stdint_h.m4:1.3
--- kaffe/m4/ax_create_stdint_h.m4:1.2 Sat Jun 18 07:57:27 2005
+++ kaffe/m4/ax_create_stdint_h.m4 Sun Jun 19 13:47:28 2005
@@ -30,7 +30,7 @@
dnl file will include it directly. No need for fuzzy HAVE_STDINT_H things...
dnl
dnl @, (status: used on new platforms) (see http://ac-archive.sf.net/gstdint/)
-dnl @version $Id: ax_create_stdint_h.m4,v 1.2 2005/06/18 07:57:27 guilhem Exp $
+dnl @version $Id: ax_create_stdint_h.m4,v 1.3 2005/06/19 13:47:28 guilhem Exp $
dnl @author Guido Draheim <guidod at gmx.de>
AC_DEFUN([AX_CHECK_DATA_MODEL],[
@@ -615,6 +615,7 @@
/* These limits are merily those of a two complement byte-oriented system */
+#if !defined(INT8_MIN)
/* Minimum of signed integral types. */
# define INT8_MIN (-128)
# define INT16_MIN (-32767-1)
@@ -625,12 +626,15 @@
# define INT16_MAX (32767)
# define INT32_MAX (2147483647)
# define INT64_MAX (__INT64_C(9223372036854775807))
+#endif
/* Maximum of unsigned integral types. */
+#if !defined(UINT8_MAX)
# define UINT8_MAX (255)
# define UINT16_MAX (65535)
# define UINT32_MAX (4294967295U)
# define UINT64_MAX (__UINT64_C(18446744073709551615))
+#endif
/* Minimum of signed integral types having a minimum size. */
# define INT_LEAST8_MIN INT8_MIN
More information about the kaffe
mailing list