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.

81 lines
1.9 KiB

  1. --- a/CMakeLists.txt
  2. +++ b/CMakeLists.txt
  3. @@ -170,43 +170,43 @@ endif()
  4. # libicu is highly recommended for RSCALE support
  5. # libicu can be found at http://www.icu-project.org
  6. # RSCALE info at http://tools.ietf.org/html/rfc7529
  7. -find_package(ICU)
  8. -set_package_properties(ICU PROPERTIES
  9. - TYPE RECOMMENDED
  10. - PURPOSE "For RSCALE (RFC7529) support"
  11. -)
  12. -add_feature_info(
  13. - "RSCALE support (RFC7529)"
  14. - ICU_FOUND
  15. - "build in RSCALE support"
  16. -)
  17. -if(ICU_FOUND)
  18. - set(REQUIRES_PRIVATE_ICU "Requires.private: icu-i18n") #for libical.pc
  19. - set(HAVE_LIBICU 1)
  20. - if(ICU_MAJOR_VERSION VERSION_GREATER 50)
  21. - set(HAVE_ICU_DANGI TRUE)
  22. - else()
  23. - set(HAVE_ICU_DANGI FALSE)
  24. - endif()
  25. -endif()
  26. -if(ICU_I18N_FOUND)
  27. - set(HAVE_LIBICU_I18N 1)
  28. -endif()
  29. +# find_package(ICU)
  30. +# set_package_properties(ICU PROPERTIES
  31. +# TYPE RECOMMENDED
  32. +# PURPOSE "For RSCALE (RFC7529) support"
  33. +# )
  34. +# add_feature_info(
  35. +# "RSCALE support (RFC7529)"
  36. +# ICU_FOUND
  37. +# "build in RSCALE support"
  38. +# )
  39. +# if(ICU_FOUND)
  40. +# set(REQUIRES_PRIVATE_ICU "Requires.private: icu-i18n") #for libical.pc
  41. +# set(HAVE_LIBICU 1)
  42. +# if(ICU_MAJOR_VERSION VERSION_GREATER 50)
  43. +# set(HAVE_ICU_DANGI TRUE)
  44. +# else()
  45. +# set(HAVE_ICU_DANGI FALSE)
  46. +# endif()
  47. +# endif()
  48. +# if(ICU_I18N_FOUND)
  49. +# set(HAVE_LIBICU_I18N 1)
  50. +# endif()
  51. # compile in Berkeley DB support
  52. -find_package(BDB)
  53. -set_package_properties(BDB PROPERTIES
  54. - TYPE OPTIONAL
  55. - PURPOSE "For Berkeley DB storage support"
  56. -)
  57. -add_feature_info(
  58. - "Berkeley DB storage support"
  59. - BDB_FOUND
  60. - "build in support for Berkeley DB storage"
  61. -)
  62. -if(BDB_FOUND)
  63. - set(HAVE_BDB True)
  64. -endif()
  65. +# find_package(BDB)
  66. +# set_package_properties(BDB PROPERTIES
  67. +# TYPE OPTIONAL
  68. +# PURPOSE "For Berkeley DB storage support"
  69. +# )
  70. +# add_feature_info(
  71. +# "Berkeley DB storage support"
  72. +# BDB_FOUND
  73. +# "build in support for Berkeley DB storage"
  74. +# )
  75. +# if(BDB_FOUND)
  76. +# set(HAVE_BDB True)
  77. +# endif()
  78. # MSVC specific definitions
  79. if(WIN32)