From d6b6f45fcc03e7d59583fac94a21599126faf0b6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 17 Jun 2007 18:22:49 +0000 Subject: [PATCH] Only one include of stdio.h and with _GNU_SOURCE defined. Added include of "cconfig.h". _all_ Pazpar2 source must include it. --- src/icu_chain_test.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/icu_chain_test.c b/src/icu_chain_test.c index 9d4fddd..6c630ae 100644 --- a/src/icu_chain_test.c +++ b/src/icu_chain_test.c @@ -2,10 +2,13 @@ gcc -I/usr/include/libxml2 -lxml2 -o icu-xml-convert icu-xml-convert.c */ -#include -#include +#if HAVE_CONFIG_H +#include "cconfig.h" +#endif #define _GNU_SOURCE +#include + #include #include -- 1.7.10.4