aboutsummaryrefslogtreecommitdiff
path: root/ports/harfbuzz/icu.patch
diff options
context:
space:
mode:
authorMartin Vejdarski <extrulm@gmail.com>2021-01-25 10:47:30 +0100
committerGitHub <noreply@github.com>2021-01-25 01:47:30 -0800
commitcc093a822431437b4a78945032f2996efe668a7d (patch)
treee51a99885034a7d02a4e83917148154b60000cd0 /ports/harfbuzz/icu.patch
parenta6fbf2032211255168f2437d94ce1bc50c5a03f5 (diff)
downloadvcpkg-cc093a822431437b4a78945032f2996efe668a7d.tar.gz
vcpkg-cc093a822431437b4a78945032f2996efe668a7d.zip
[harfbuzz] Use meson and update to 2.7.0 (#12860)
* [harfbuzz] Use meson * [harfbuzz] Add config file for CMake * [harfbuzz,pango] Remove glib option for harfbuzz * [libass,libmupdf,qt5-base,skia] Fix for harfbuzz * Back out meson edit already applied in https://github.com/microsoft/vcpkg/pull/15258 * [harfbuzz] Fixup pkgconfig * [libass] Bump port version * Revert "[libass,libmupdf,qt5-base,skia] Fix for harfbuzz" This reverts commit 3ba27c6c1c10a2889a8c5e028d010916f91418e3. * [harfbuzz] Update to 2.7.4 * update baseline record * Restore glib feature for harfbuzz and remove vagrant change * Update port version * Change over to manifests * Update port version Co-authored-by: Ebrahim Byagowi <ebrahim@gnu.org> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Diffstat (limited to 'ports/harfbuzz/icu.patch')
-rw-r--r--ports/harfbuzz/icu.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/ports/harfbuzz/icu.patch b/ports/harfbuzz/icu.patch
deleted file mode 100644
index 1747c4a7d..000000000
--- a/ports/harfbuzz/icu.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index eb6cc9007..209128695 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -226,19 +226,13 @@ if (HB_HAVE_ICU)
- add_definitions(-DHAVE_ICU)
-
- # https://github.com/WebKit/webkit/blob/master/Source/cmake/FindICU.cmake
-- find_package(PkgConfig)
-- pkg_check_modules(PC_ICU QUIET icu-uc)
--
-- find_path(ICU_INCLUDE_DIR NAMES unicode/utypes.h HINTS ${PC_ICU_INCLUDE_DIRS} ${PC_ICU_INCLUDEDIR})
-- find_library(ICU_LIBRARY NAMES libicuuc cygicuuc cygicuuc32 icuuc HINTS ${PC_ICU_LIBRARY_DIRS} ${PC_ICU_LIBDIR})
-+ find_package(ICU COMPONENTS uc REQUIRED)
-
-- include_directories(${ICU_INCLUDE_DIR})
-+ include_directories(${ICU_INCLUDE_DIRS})
-
- list(APPEND project_headers ${PROJECT_SOURCE_DIR}/src/hb-icu.h)
-
-- list(APPEND THIRD_PARTY_LIBS ${ICU_LIBRARY})
--
-- mark_as_advanced(ICU_INCLUDE_DIR ICU_LIBRARY)
-+ list(APPEND THIRD_PARTY_LIBS ${ICU_LIBRARIES})
- endif ()
-
- if (APPLE AND HB_HAVE_CORETEXT)