Previous 199869 Revisions Next

r34310 Saturday 10th January, 2015 at 11:03:05 UTC by Miodrag Milanović
Applied expat changes in order to compile (nw)
[3rdparty/expat/lib]intconfig.h* xmlparse.c xmlrole.c xmltok.c

trunk/3rdparty/expat/lib/intconfig.h
r0r242822
1#ifndef INTCONFIG_H
2#define INTCONFIG_H
3
4#include <stdlib.h>
5#include <string.h>
6
7#define XML_NS 1
8#define XML_DTD 1
9#define XML_CONTEXT_BYTES 1024
10
11#ifdef USE_LSB
12#define BYTEORDER 1234
13#else
14#define BYTEORDER 4321
15#endif
16
17#define HAVE_MEMMOVE
18
19#endif
trunk/3rdparty/expat/lib/xmlparse.c
r242821r242822
1010
1111#define XML_BUILDING_EXPAT 1
1212
13#ifdef COMPILED_FROM_DSP
14#include "winconfig.h"
15#elif defined(MACOS_CLASSIC)
16#include "macconfig.h"
17#elif defined(__amigaos__)
18#include "amigaconfig.h"
19#elif defined(__WATCOMC__)
20#include "watcomconfig.h"
21#elif defined(HAVE_EXPAT_CONFIG_H)
22#include <expat_config.h>
23#endif /* ndef COMPILED_FROM_DSP */
13#include "intconfig.h"
2414
2515#include "ascii.h"
2616#include "expat.h"
trunk/3rdparty/expat/lib/xmlrole.c
r242821r242822
44
55#include <stddef.h>
66
7#ifdef COMPILED_FROM_DSP
8#include "winconfig.h"
9#elif defined(MACOS_CLASSIC)
10#include "macconfig.h"
11#elif defined(__amigaos__)
12#include "amigaconfig.h"
13#elif defined(__WATCOMC__)
14#include "watcomconfig.h"
15#else
16#ifdef HAVE_EXPAT_CONFIG_H
17#include <expat_config.h>
18#endif
19#endif /* ndef COMPILED_FROM_DSP */
7#include "intconfig.h"
208
219#include "expat_external.h"
2210#include "internal.h"
trunk/3rdparty/expat/lib/xmltok.c
r242821r242822
44
55#include <stddef.h>
66
7#ifdef COMPILED_FROM_DSP
8#include "winconfig.h"
9#elif defined(MACOS_CLASSIC)
10#include "macconfig.h"
11#elif defined(__amigaos__)
12#include "amigaconfig.h"
13#elif defined(__WATCOMC__)
14#include "watcomconfig.h"
15#else
16#ifdef HAVE_EXPAT_CONFIG_H
17#include <expat_config.h>
18#endif
19#endif /* ndef COMPILED_FROM_DSP */
7#include "intconfig.h"
208
219#include "expat_external.h"
2210#include "internal.h"


Previous 199869 Revisions Next


© 1997-2024 The MAME Team