gatesgarth migration: libical: refresh custom patch to recipe v3.0.8

Refresh patch to match with the latest version

https://jira.digi.com/browse/DEL-7508

Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
Arturo Buzarra 2021-02-26 18:46:02 +01:00
parent 8c95cfd66f
commit 2ab1b83b24
1 changed files with 4 additions and 4 deletions

View File

@ -9,19 +9,19 @@ Signed-off-by: Javier Viguera <javier.viguera@digi.com>
1 file changed, 3 insertions(+) 1 file changed, 3 insertions(+)
diff --git a/CMakeLists.txt b/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt
index 61ab244..9bc2a22 100644 index 47d54d6..9717a82 100644
--- a/CMakeLists.txt --- a/CMakeLists.txt
+++ b/CMakeLists.txt +++ b/CMakeLists.txt
@@ -170,6 +170,8 @@ endif() @@ -191,6 +191,8 @@ endif()
# libicu is highly recommended for RSCALE support # libicu is highly recommended for RSCALE support
# libicu can be found at http://www.icu-project.org # libicu can be found at http://www.icu-project.org
# RSCALE info at http://tools.ietf.org/html/rfc7529 # RSCALE info at https://tools.ietf.org/html/rfc7529
+option(WITH_LIBICU "Build with ICU support. Libicu is highly recommended for RSCALE support") +option(WITH_LIBICU "Build with ICU support. Libicu is highly recommended for RSCALE support")
+if(WITH_LIBICU) +if(WITH_LIBICU)
find_package(ICU) find_package(ICU)
set_package_properties(ICU PROPERTIES set_package_properties(ICU PROPERTIES
TYPE RECOMMENDED TYPE RECOMMENDED
@@ -192,6 +194,7 @@ endif() @@ -213,6 +215,7 @@ endif()
if(ICU_I18N_FOUND) if(ICU_I18N_FOUND)
set(HAVE_LIBICU_I18N 1) set(HAVE_LIBICU_I18N 1)
endif() endif()