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.

83 lines
2.0 KiB

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