mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
62 lines
1 KiB
ArmAsm
62 lines
1 KiB
ArmAsm
#define pasty(m, n) m##n
|
|
#define include pasty(#, include)
|
|
#define ifdef pasty(#, ifdef)
|
|
#define ifndef pasty(#, ifndef)
|
|
#define endif pasty(#, endif)
|
|
#define define pasty(#, define)
|
|
#define message pasty(#, pragma message)
|
|
#define undef pasty(#, undef)
|
|
#define error pasty(#, error)
|
|
#define else pasty(#, else)
|
|
#define comment pasty(#, pragma comment)
|
|
|
|
|
|
ifndef ARABICA_ARABICA_CONFIG_H
|
|
define ARABICA_ARABICA_CONFIG_H
|
|
|
|
#ifdef ARABICA_NO_WCHAR_T
|
|
#undef ARABICA_NO_WCHAR_T
|
|
define ARABICA_NO_WCHAR_T
|
|
#endif
|
|
|
|
|
|
define ARABICA_NO_CODECVT_SPECIALISATIONS
|
|
|
|
#ifndef NO_BOOST
|
|
define HAVE_BOOST
|
|
#endif
|
|
|
|
define ARABICA_WINDOWS
|
|
|
|
#if defined(_DEBUG) || (__DEBUG__)
|
|
define ARABICA_DEBUG
|
|
#endif
|
|
|
|
#ifdef USE_LIBXML2
|
|
#undef USE_LIBXML2
|
|
define USE_LIBXML2
|
|
#endif
|
|
|
|
#ifdef USE_EXPAT
|
|
#undef USE_EXPAT
|
|
define USE_EXPAT
|
|
#endif
|
|
|
|
#ifdef USE_XERCES
|
|
#undef USE_XERCES
|
|
define USE_XERCES
|
|
#endif
|
|
|
|
#ifdef USE_GARDEN
|
|
#undef USE_GARDEN
|
|
define USE_GARDEN
|
|
#endif
|
|
|
|
#ifdef USE_MSXML
|
|
#undef USE_MSXML
|
|
define USE_MSXML
|
|
#endif
|
|
|
|
endif
|
|
|
|
|