From 8e99d1a0adfc4eb035e73219ef7001494ecb0c50 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Tue, 24 Oct 2006 20:40:29 +0000 Subject: [PATCH] * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform to gnulib's policy of including config.h unconditionally. --- ChangeLog | 9 +++++++++ lib/argz.c | 10 ++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index cad4ec1cf5..2f88317da2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-10-24 Ralf Wildenhues + + Sync from Libtool: + + 2006-10-24 Paul Eggert + + * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform + to gnulib's policy of including config.h unconditionally. + 2006-10-24 Bruno Haible * modules/wcwidth (Files): Add m4/wint_t.m4. diff --git a/lib/argz.c b/lib/argz.c index d00a016996..ff1a4f644d 100644 --- a/lib/argz.c +++ b/lib/argz.c @@ -19,12 +19,10 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifdef HAVE_CONFIG_H -# if defined(LTDL) && defined LT_CONFIG_H -# include LT_CONFIG_H -# else -# include -# endif +#if defined(LTDL) && defined LT_CONFIG_H +# include LT_CONFIG_H +#else +# include #endif #include -- 2.30.2