123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- #ifndef __XML_XSLTCONFIG_H__
- #define __XML_XSLTCONFIG_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define LIBXSLT_DOTTED_VERSION "1.1.29"
- #define LIBXSLT_VERSION 10129
- #define LIBXSLT_VERSION_STRING "10129"
- #define LIBXSLT_VERSION_EXTRA ""
- #if 0
- #define WITH_XSLT_DEBUG
- #endif
- #if 0
- #define DEBUG_MEMORY
- #define DEBUG_MEMORY_LOCATION
- #endif
- #if 0
- #define XSLT_NEED_TRIO
- #endif
- #ifdef __VMS
- #define HAVE_MATH_H 1
- #define HAVE_SYS_STAT_H 1
- #ifndef XSLT_NEED_TRIO
- #define XSLT_NEED_TRIO
- #endif
- #endif
- #ifdef XSLT_NEED_TRIO
- #define TRIO_REPLACE_STDIO
- #endif
- #if 1
- #ifndef WITH_DEBUGGER
- #define WITH_DEBUGGER
- #endif
- #endif
- #if 1
- #ifndef WITH_MODULES
- #define WITH_MODULES
- #endif
- #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/usr/lib/libxslt-plugins"
- #endif
- #if 1
- #ifndef XSLT_LOCALE_XLOCALE
- #define XSLT_LOCALE_XLOCALE
- #endif
- #elif 0
- #ifndef XSLT_LOCALE_WINAPI
- #define XSLT_LOCALE_WINAPI
- #endif
- #endif
- #ifdef __GNUC__
- #ifdef HAVE_ANSIDECL_H
- #include <ansidecl.h>
- #endif
- #ifndef ATTRIBUTE_UNUSED
- #define ATTRIBUTE_UNUSED __attribute__((unused))
- #endif
- #else
- #define ATTRIBUTE_UNUSED
- #endif
- #ifdef __GNUC__
- #define LIBXSLT_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
- #else
- #define LIBXSLT_ATTR_FORMAT(fmt,args)
- #endif
- #if !defined LIBXSLT_PUBLIC
- #if (defined(__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
- #define LIBXSLT_PUBLIC __declspec(dllimport)
- #else
- #define LIBXSLT_PUBLIC
- #endif
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* __XML_XSLTCONFIG_H__ */
|