diff options
| author | driver1998 <driver1998.ms@outlook.com> | 2019-04-18 16:33:06 +0800 |
|---|---|---|
| committer | Griffin Downs <35574547+grdowns@users.noreply.github.com> | 2019-04-18 01:33:06 -0700 |
| commit | 5285f8dc4a11e9ae0ee1a7fe674eaf39a2876cd1 (patch) | |
| tree | 9babf042b2b8ead86cd95696159cf574716925b8 | |
| parent | 2112801abafbc0778f441bec6bce237c7eced31c (diff) | |
| download | vcpkg-5285f8dc4a11e9ae0ee1a7fe674eaf39a2876cd1.tar.gz vcpkg-5285f8dc4a11e9ae0ee1a7fe674eaf39a2876cd1.zip | |
[gettext] arm/arm64 windows support (#6118)
* gettext port update for windows-arm64
* bump gettext version to 0.19-9
| -rw-r--r-- | ports/gettext/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | ports/gettext/CONTROL | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ports/gettext/CMakeLists.txt b/ports/gettext/CMakeLists.txt index cfd460e20..1ec9aa285 100644 --- a/ports/gettext/CMakeLists.txt +++ b/ports/gettext/CMakeLists.txt @@ -119,6 +119,9 @@ endif() if(NOT WIN32)
target_link_libraries(libintl PRIVATE Threads::Threads)
endif()
+if (WIN32)
+ target_link_libraries(libintl PRIVATE Advapi32.lib)
+endif()
install(TARGETS libintl
EXPORT unofficial-gettext-targets
diff --git a/ports/gettext/CONTROL b/ports/gettext/CONTROL index 386fbd09c..60012746b 100644 --- a/ports/gettext/CONTROL +++ b/ports/gettext/CONTROL @@ -1,4 +1,4 @@ Source: gettext -Version: 0.19-8 +Version: 0.19-9 Description: The GNU gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages. Provides libintl. Build-Depends: libiconv |
