xsltwin32config.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Summary: compile-time version informations for the XSLT engine
  3. * when compiled on windows
  4. * Description: compile-time version informations for the XSLT engine
  5. * when compiled on windows. This file is generated.
  6. *
  7. * Copy: See Copyright for the status of this software.
  8. *
  9. * Author: Daniel Veillard
  10. */
  11. #ifndef __XML_XSLTWIN32CONFIG_H__
  12. #define __XML_XSLTWIN32CONFIG_H__
  13. #include "win32config.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * LIBXSLT_DOTTED_VERSION:
  19. *
  20. * the version string like "1.2.3"
  21. */
  22. #define LIBXSLT_DOTTED_VERSION "1.1.26"
  23. /**
  24. * LIBXSLT_VERSION:
  25. *
  26. * the version number: 1.2.3 value is 1002003
  27. */
  28. #define LIBXSLT_VERSION 10126
  29. /**
  30. * LIBXSLT_VERSION_STRING:
  31. *
  32. * the version number string, 1.2.3 value is "1002003"
  33. */
  34. #define LIBXSLT_VERSION_STRING "10126"
  35. /**
  36. * LIBXSLT_VERSION_EXTRA:
  37. *
  38. * extra version information, used to show a CVS compilation
  39. */
  40. #define LIBXSLT_VERSION_EXTRA "-win32"
  41. /**
  42. * WITH_XSLT_DEBUG:
  43. *
  44. * Activate the compilation of the debug reporting. Speed penalty
  45. * is insignifiant and being able to run xsltpoc -v is useful. On
  46. * by default
  47. */
  48. #if 1
  49. #define WITH_XSLT_DEBUG
  50. #endif
  51. /**
  52. * WITH_MODULES:
  53. *
  54. * Whether module support is configured into libxslt
  55. */
  56. #if 1
  57. #ifndef WITH_MODULES
  58. #define WITH_MODULES
  59. #endif
  60. #define LIBXSLT_PLUGINS_PATH() getenv("LIBXSLT_PLUGINS_PATH")
  61. #endif
  62. #if 0
  63. /**
  64. * DEBUG_MEMORY:
  65. *
  66. * should be activated only when debugging libxslt. It replaces the
  67. * allocator with a collect and debug shell to the libc allocator.
  68. * Use configure --with-mem-debug to activate it on both library
  69. */
  70. #define DEBUG_MEMORY
  71. /**
  72. * DEBUG_MEMORY_LOCATION:
  73. *
  74. * should be activated only when debugging libxslt.
  75. * DEBUG_MEMORY_LOCATION should be activated only when libxml has
  76. * been configured with --with-debug-mem too
  77. */
  78. #define DEBUG_MEMORY_LOCATION
  79. #endif
  80. /**
  81. * ATTRIBUTE_UNUSED:
  82. *
  83. * This macro is used to flag unused function parameters to GCC, useless here
  84. */
  85. #ifndef ATTRIBUTE_UNUSED
  86. #define ATTRIBUTE_UNUSED
  87. #endif
  88. #ifdef __cplusplus
  89. }
  90. #endif
  91. #endif /* __XML_XSLTWIN32CONFIG_H__ */