From: Akim Demaille Date: Wed, 29 Sep 1999 07:52:57 +0000 (+0000) Subject: 1999-09-29 Akim Demaille X-Git-Tag: experimental-pre-merge-trunk-into-experimental-1999-10-01~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e636b8cf005bd791ef6ae735aff1111b3400ad05;p=thirdparty%2Fautoconf.git 1999-09-29 Akim Demaille * acspecific.m4 (AC_C_CONST): Changed from const charset x; to const charset x = {0, 0}; From Jim Meyering. --- diff --git a/ChangeLog b/ChangeLog index 9f80181c..fb4da1f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +1999-09-29 Akim Demaille + + * acspecific.m4 (AC_C_CONST): Changed from + const charset x; + to + const charset x = {0, 0}; + From Jim Meyering. + 1999-09-28 Akim Demaille Start to get rid of acconfig.h. It is an anachronism. diff --git a/acspecific.m4 b/acspecific.m4 index c930c016..495519d1 100644 --- a/acspecific.m4 +++ b/acspecific.m4 @@ -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; diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4 index c930c016..495519d1 100644 --- a/lib/autoconf/specific.m4 +++ b/lib/autoconf/specific.m4 @@ -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;