diff options
| author | Pierre Gergondet <pierre.gergondet+github@gmail.com> | 2020-10-16 06:38:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-15 15:38:23 -0700 |
| commit | 7dde05990ff71efe425a4df1014787b2cb78b60c (patch) | |
| tree | 3dc0017ecdf81fc55923d50ef046f29c79ee8ad4 | |
| parent | c2b6e8abb23783e52508a34b5d5d4bce653f7bb1 (diff) | |
| download | vcpkg-7dde05990ff71efe425a4df1014787b2cb78b60c.tar.gz vcpkg-7dde05990ff71efe425a4df1014787b2cb78b60c.zip | |
[icu] Disable layoutex feature (#13991)
This feature requires icu-le-hb which is not provided by vcpkg. When
this package is otherwise available on the system the build will fail as
the pkg-config file pulls the dependency from the system.
| -rw-r--r-- | ports/icu/CONTROL | 2 | ||||
| -rw-r--r-- | ports/icu/portfile.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/icu/CONTROL b/ports/icu/CONTROL index 6ca647cad..9624e639b 100644 --- a/ports/icu/CONTROL +++ b/ports/icu/CONTROL @@ -1,6 +1,6 @@ Source: icu
Version: 67.1
-Port-Version: 4
+Port-Version: 5
Homepage: http://icu-project.org/apiref/icu4c/
Description: Mature and widely used Unicode and localization library.
Supports: !(arm|uwp)
diff --git a/ports/icu/portfile.cmake b/ports/icu/portfile.cmake index 49c87bfdd..17296c740 100644 --- a/ports/icu/portfile.cmake +++ b/ports/icu/portfile.cmake @@ -25,7 +25,7 @@ vcpkg_extract_source_archive_ex( vcpkg_find_acquire_program(PYTHON3)
set(ENV{PYTHON} "${PYTHON3}")
-set(CONFIGURE_OPTIONS "--disable-samples --disable-tests")
+set(CONFIGURE_OPTIONS "--disable-samples --disable-tests --disable-layoutex")
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
set(CONFIGURE_OPTIONS "${CONFIGURE_OPTIONS} --disable-static --enable-shared")
|
