- transform.c: fixed #53401
[platform/upstream/libxslt.git] / libxslt / xsltconfig.h.in
1 /*
2  * xsltconfig.h: compile-time version informations for the XSLT engine
3  *
4  * See Copyright for the status of this software.
5  *
6  * Daniel.Veillard@w3.org
7  */
8
9 #ifndef __XML_XSLTCONFIG_H__
10 #define __XML_XSLTCONFIG_H__
11
12 #include "config.h"
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 #if @WITH_XSLT_DEBUG@
19 #define WITH_XSLT_DEBUG
20 #endif
21
22 #if @WITH_MEM_DEBUG@
23 #define DEBUG_MEMORY
24 #define DEBUG_MEMORY_LOCATION
25 #endif
26
27 #ifdef __GNUC__
28 #ifdef HAVE_ANSIDECL_H
29 #include <ansidecl.h>
30 #endif
31 #ifndef ATTRIBUTE_UNUSED
32 #define ATTRIBUTE_UNUSED
33 #endif
34 #else
35 #define ATTRIBUTE_UNUSED
36 #endif
37
38 #ifdef __cplusplus
39 }
40 #endif
41
42 #endif /* __XML_XSLTCONFIG_H__ */