You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.2 KiB

4 years ago
  1. /*
  2. * exsltconfig.h: compile-time version informations for the EXSLT library
  3. *
  4. * See Copyright for the status of this software.
  5. *
  6. * daniel@veillard.com
  7. */
  8. #ifndef __XML_EXSLTCONFIG_H__
  9. #define __XML_EXSLTCONFIG_H__
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * LIBEXSLT_DOTTED_VERSION:
  15. *
  16. * the version string like "1.2.3"
  17. */
  18. #define LIBEXSLT_DOTTED_VERSION "1.1.32"
  19. /**
  20. * LIBEXSLT_VERSION:
  21. *
  22. * the version number: 1.2.3 value is 10203
  23. */
  24. #define LIBEXSLT_VERSION 820
  25. /**
  26. * LIBEXSLT_VERSION_STRING:
  27. *
  28. * the version number string, 1.2.3 value is "10203"
  29. */
  30. #define LIBEXSLT_VERSION_STRING "820"
  31. /**
  32. * LIBEXSLT_VERSION_EXTRA:
  33. *
  34. * extra version information, used to show a CVS compilation
  35. */
  36. #define LIBEXSLT_VERSION_EXTRA ""
  37. /**
  38. * WITH_CRYPTO:
  39. *
  40. * Whether crypto support is configured into exslt
  41. */
  42. #if 0
  43. #define EXSLT_CRYPTO_ENABLED
  44. #endif
  45. /**
  46. * ATTRIBUTE_UNUSED:
  47. *
  48. * This macro is used to flag unused function parameters to GCC
  49. */
  50. #ifdef __GNUC__
  51. #ifdef HAVE_ANSIDECL_H
  52. #include <ansidecl.h>
  53. #endif
  54. #ifndef ATTRIBUTE_UNUSED
  55. #define ATTRIBUTE_UNUSED __attribute__((unused))
  56. #endif
  57. #else
  58. #define ATTRIBUTE_UNUSED
  59. #endif
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif /* __XML_EXSLTCONFIG_H__ */