Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:52

0001 /*
0002  * exsltconfig.h: compile-time version information for the EXSLT library
0003  *
0004  * See Copyright for the status of this software.
0005  *
0006  * daniel@veillard.com
0007  */
0008 
0009 #ifndef __XML_EXSLTCONFIG_H__
0010 #define __XML_EXSLTCONFIG_H__
0011 
0012 #ifdef __cplusplus
0013 extern "C" {
0014 #endif
0015 
0016 /**
0017  * LIBEXSLT_DOTTED_VERSION:
0018  *
0019  * the version string like "1.2.3"
0020  */
0021 #define LIBEXSLT_DOTTED_VERSION "0.8.23"
0022 
0023 /**
0024  * LIBEXSLT_VERSION:
0025  *
0026  * the version number: 1.2.3 value is 10203
0027  */
0028 #define LIBEXSLT_VERSION 823
0029 
0030 /**
0031  * LIBEXSLT_VERSION_STRING:
0032  *
0033  * the version number string, 1.2.3 value is "10203"
0034  */
0035 #define LIBEXSLT_VERSION_STRING "823"
0036 
0037 /**
0038  * LIBEXSLT_VERSION_EXTRA:
0039  *
0040  * extra version information, used to show a Git commit description
0041  */
0042 #define LIBEXSLT_VERSION_EXTRA ""
0043 
0044 /**
0045  * WITH_CRYPTO:
0046  *
0047  * Whether crypto support is configured into exslt
0048  */
0049 #if 1
0050 #define EXSLT_CRYPTO_ENABLED
0051 #endif
0052 
0053 /**
0054  * ATTRIBUTE_UNUSED:
0055  *
0056  * This macro is used to flag unused function parameters to GCC
0057  */
0058 #ifdef __GNUC__
0059 #ifndef ATTRIBUTE_UNUSED
0060 #define ATTRIBUTE_UNUSED __attribute__((unused))
0061 #endif
0062 #else
0063 #define ATTRIBUTE_UNUSED
0064 #endif
0065 
0066 #ifdef __cplusplus
0067 }
0068 #endif
0069 
0070 #endif /* __XML_EXSLTCONFIG_H__ */