Make it possible to avoid the import of expat_config.h. This makes it

easier to compile Expat without the autoconf support.
This closes SF patch #458907.
This commit is contained in:
Fred L. Drake, Jr. 2003-10-16 04:51:11 +00:00
parent 18b57349d9
commit 99609421a8
7 changed files with 14 additions and 1 deletions

View file

@ -102,7 +102,7 @@ LIBTOOL = @LIBTOOL@
INCLUDES = -I$(srcdir)/lib -I.
LDFLAGS = @LDFLAGS@
CPPFLAGS = @CPPFLAGS@
CFLAGS = @CFLAGS@
CFLAGS = @CFLAGS@ -DHAVE_EXPAT_CONFIG_H
VSNFLAG = -version-info @LIBCURRENT@:@LIBREVISION@:@LIBAGE@
### autoconf this?

View file

@ -12,7 +12,9 @@
#elif defined(MACOS_CLASSIC)
#include "macconfig.h"
#else
#ifdef HAVE_EXPAT_CONFIG_H
#include <expat_config.h>
#endif
#endif /* ndef COMPILED_FROM_DSP */
#include "expat.h"

View file

@ -7,7 +7,9 @@
#elif defined(MACOS_CLASSIC)
#include "macconfig.h"
#else
#ifdef HAVE_EXPAT_CONFIG_H
#include <expat_config.h>
#endif
#endif /* ndef COMPILED_FROM_DSP */
#include "internal.h"

View file

@ -7,7 +7,9 @@
#elif defined(MACOS_CLASSIC)
#include "macconfig.h"
#else
#ifdef HAVE_EXPAT_CONFIG_H
#include <expat_config.h>
#endif
#endif /* ndef COMPILED_FROM_DSP */
#include "internal.h"

View file

@ -4,7 +4,9 @@
chardata.c
*/
#ifdef HAVE_EXPAT_CONFIG_H
#include <expat_config.h>
#endif
#ifdef HAVE_CHECK_H
#include <check.h>
#else

View file

@ -4,7 +4,10 @@
runtest.c : run the Expat test suite
*/
#ifdef HAVE_EXPAT_CONFIG_H
#include <expat_config.h>
#endif
#ifdef HAVE_CHECK_H
#include <check.h>
#else

View file

@ -10,8 +10,10 @@
#ifdef COMPILED_FROM_DSP
#include "winconfig.h"
#else
#ifdef HAVE_EXPAT_CONFIG_H
#include "expat_config.h"
#endif
#endif
#include "expat.h"
#include "xmlfile.h"
#include "xmltchar.h"