From 12b513277972da70d52920f40381fc862366573e Mon Sep 17 00:00:00 2001 From: Roumen Petrov Date: Thu, 24 May 2012 00:47:06 +0300 Subject: [PATCH 1/2] minimize use of HAVE_CONFIG_H as build process for supported platforms provide "config.h" header file --- libxml.h | 5 +++++ runsuite.c | 3 --- runtest.c | 3 --- runxmlconf.c | 3 --- testapi.c | 3 --- testrecurse.c | 3 --- win32/VC10/runsuite.vcxproj | 2 +- 7 files changed, 6 insertions(+), 16 deletions(-) diff --git a/libxml.h b/libxml.h index fa3aea4..efe285b 100644 --- a/libxml.h +++ b/libxml.h @@ -29,6 +29,11 @@ #include #include #else +/* + * Currently supported platforms use either autoconf or + * copy to config.h own "preset" configuration file. + * As result ifdef HAVE_CONFIG_H is omited here. + */ #include "config.h" #include #endif diff --git a/runsuite.c b/runsuite.c index d1dc2ca..8ba5f6f 100644 --- a/runsuite.c +++ b/runsuite.c @@ -6,11 +6,8 @@ * daniel veillard com */ -#ifdef HAVE_CONFIG_H #include "libxml.h" -#else #include -#endif #if !defined(_WIN32) || defined(__CYGWIN__) #include diff --git a/runtest.c b/runtest.c index dd74c88..75ff3c2 100644 --- a/runtest.c +++ b/runtest.c @@ -11,11 +11,8 @@ * daniel veillard com */ -#ifdef HAVE_CONFIG_H #include "libxml.h" -#else #include -#endif #if !defined(_WIN32) || defined(__CYGWIN__) #include diff --git a/runxmlconf.c b/runxmlconf.c index 52d50d7..a271343 100644 --- a/runxmlconf.c +++ b/runxmlconf.c @@ -6,11 +6,8 @@ * daniel veillard com */ -#ifdef HAVE_CONFIG_H #include "libxml.h" -#else #include -#endif #ifdef LIBXML_XPATH_ENABLED diff --git a/testapi.c b/testapi.c index 4f4b39b..ad04e2c 100644 --- a/testapi.c +++ b/testapi.c @@ -8,11 +8,8 @@ * daniel veillard com */ -#ifdef HAVE_CONFIG_H #include "libxml.h" -#else #include -#endif #include /* for putenv() */ #include diff --git a/testrecurse.c b/testrecurse.c index bdc7c30..6416b2a 100644 --- a/testrecurse.c +++ b/testrecurse.c @@ -10,11 +10,8 @@ * daniel veillard com */ -#ifdef HAVE_CONFIG_H #include "libxml.h" -#else #include -#endif #if !defined(_WIN32) || defined(__CYGWIN__) #include diff --git a/win32/VC10/runsuite.vcxproj b/win32/VC10/runsuite.vcxproj index b4ccc37..83cc991 100644 --- a/win32/VC10/runsuite.vcxproj +++ b/win32/VC10/runsuite.vcxproj @@ -46,7 +46,7 @@ Disabled $(ProjectDir);$(ProjectDir)..\..\include;$(ProjectDir)..\..\..\libiconv-1.14.vc10\include;%(AdditionalIncludeDirectories) 4996 - HAVE_CONFIG_H;_UNICODE;UNICODE;%(PreprocessorDefinitions) + _UNICODE;UNICODE;%(PreprocessorDefinitions) /MP %(AdditionalOptions) false -- 1.6.4