]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-09-29 Akim Demaille <akim@epita.fr>
authorAkim Demaille <akim@epita.fr>
Wed, 29 Sep 1999 07:52:57 +0000 (07:52 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 29 Sep 1999 07:52:57 +0000 (07:52 +0000)
* acspecific.m4 (AC_C_CONST): Changed from
const charset x;
to
const charset x = {0, 0};
From Jim Meyering.

ChangeLog
acspecific.m4
lib/autoconf/specific.m4

index 9f80181ce75ccd11c029ab716dc5d82aac1b2d2d..fb4da1f23d2116d51fdcefa7bd26be041ad92511 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+1999-09-29  Akim Demaille  <akim@epita.fr>
+
+       * acspecific.m4 (AC_C_CONST): Changed from
+       const charset x;
+       to
+       const charset x = {0, 0};
+       From Jim Meyering.
+
 1999-09-28  Akim Demaille  <akim@epita.fr>
 
        Start to get rid of acconfig.h.  It is an anachronism.
index c930c016e2973b341da7c77bc8863eec14042b8d..495519d1ae5ad10d23da723eba333bf3ef0a299f 100644 (file)
@@ -2190,7 +2190,7 @@ AC_CACHE_CHECK([for working const], ac_cv_c_const,
 changequote(<<, >>)dnl
 <<
 /* Ultrix mips cc rejects this.  */
-typedef int charset[2]; const charset x;
+typedef int charset[2]; const charset x = {0, 0};
 /* SunOS 4.1.1 cc rejects this.  */
 char const *const *ccp;
 char **p;
index c930c016e2973b341da7c77bc8863eec14042b8d..495519d1ae5ad10d23da723eba333bf3ef0a299f 100644 (file)
@@ -2190,7 +2190,7 @@ AC_CACHE_CHECK([for working const], ac_cv_c_const,
 changequote(<<, >>)dnl
 <<
 /* Ultrix mips cc rejects this.  */
-typedef int charset[2]; const charset x;
+typedef int charset[2]; const charset x = {0, 0};
 /* SunOS 4.1.1 cc rejects this.  */
 char const *const *ccp;
 char **p;