xmlversion.h.in
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  * xmlversion.h : compile-time version informations for the XML parser.
  3.  *
  4.  * See Copyright for the status of this software.
  5.  *
  6.  * Daniel.Veillard@w3.org
  7.  */
  8. #ifndef __XML_VERSION_H__
  9. #define __XML_VERSION_H__
  10. #define LIBXML_VERSION @LIBXML_VERSION_NUMBER@
  11. #define LIBXML_VERSION_STRING "@LIBXML_VERSION_NUMBER@"
  12. /*
  13.  * Whether the FTP support is configured in
  14.  */
  15. #if @WITH_FTP@
  16. #define LIBXML_FTP_ENABLED
  17. #else
  18. #define LIBXML_FTP_DISABLED
  19. #endif
  20. /*
  21.  * Whether the HTTP support is configured in
  22.  */
  23. #if @WITH_HTTP@
  24. #define LIBXML_HTTP_ENABLED
  25. #else
  26. #define LIBXML_HTTP_DISABLED
  27. #endif
  28. /*
  29.  * Whether the HTML support is configured in
  30.  */
  31. #if @WITH_HTML@
  32. #define LIBXML_HTML_ENABLED
  33. #else
  34. #define LIBXML_HTML_DISABLED
  35. #endif
  36. /*
  37.  * Whether XPath is configured in
  38.  */
  39. #if @WITH_XPATH@
  40. #define LIBXML_XPATH_ENABLED
  41. #else
  42. #define LIBXML_XPATH_DISABLED
  43. #endif
  44. /*
  45.  * Whether Debugging module is configured in
  46.  */
  47. #if @WITH_DEBUG@
  48. #define LIBXML_DEBUG_ENABLED
  49. #else
  50. #define LIBXML_DEBUG_DISABLED
  51. #endif
  52. /*
  53.  * Whether the memory debugging is configured in
  54.  */
  55. #if @WITH_MEM_DEBUG@
  56. #define DEBUG_MEMORY_LOCATION
  57. #endif
  58. #endif