diff options
Diffstat (limited to '3rdParty/Expat')
-rw-r--r-- | 3rdParty/Expat/SConscript | 23 | ||||
-rw-r--r-- | 3rdParty/Expat/expat_config.h | 1 |
2 files changed, 23 insertions, 1 deletions
diff --git a/3rdParty/Expat/SConscript b/3rdParty/Expat/SConscript new file mode 100644 index 0000000..cf7b684 --- /dev/null +++ b/3rdParty/Expat/SConscript @@ -0,0 +1,23 @@ +Import("env") + +env["EXPAT_FLAGS"] = { + "CPPDEFINES": ["XML_STATIC"], + "CPPPATH": [Dir("src")], + "LIBPATH": [Dir(".")], + "LIBS": ["Expat"], + } + +myenv = env.Clone() +myenv.Append(CPPDEFINES = ["XML_STATIC", "HAVE_EXPAT_CONFIG_H"]) +myenv.Append(CPPPATH = [".", "src"]) + +conf = Configure(myenv) +if conf.CheckFunc('memmove') : + myenv.Append(CPPDEFINES = ["HAVE_MEMMOVE"]) +conf.Finish() + +myenv.StaticLibrary("Expat", [ + "src/xmltok.c", + "src/xmlparse.c", + "src/xmlrole.c" + ]) diff --git a/3rdParty/Expat/expat_config.h b/3rdParty/Expat/expat_config.h index ba5f588..46f8a75 100644 --- a/3rdParty/Expat/expat_config.h +++ b/3rdParty/Expat/expat_config.h @@ -1,4 +1,3 @@ -#define HAVE_MEMMOVE 1 #define XML_CONTEXT_BYTES 1024 #define XML_NS 1 |