mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
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:
parent
18b57349d9
commit
99609421a8
7 changed files with 14 additions and 1 deletions
|
@ -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?
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
chardata.c
|
||||
*/
|
||||
|
||||
#ifdef HAVE_EXPAT_CONFIG_H
|
||||
#include <expat_config.h>
|
||||
#endif
|
||||
#ifdef HAVE_CHECK_H
|
||||
#include <check.h>
|
||||
#else
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue