diff options
| author | Patrick Dehne <patrick@mysonicweb.de> | 2021-02-24 22:45:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-24 13:45:34 -0800 |
| commit | e51bf8e4adf6da76c9e783d71f6b550a1747cc51 (patch) | |
| tree | 98c90f60a8f490d945b69fe8d8fb8eb75a491214 /ports | |
| parent | feb0a364d8d17c99b7209da3a2b331ebc011f754 (diff) | |
| download | vcpkg-e51bf8e4adf6da76c9e783d71f6b550a1747cc51.tar.gz vcpkg-e51bf8e4adf6da76c9e783d71f6b550a1747cc51.zip | |
Update taglib to 1.12.0 (#16390)
* Update taglib to 1.12.0
* Update versions file
Co-authored-by: Patrick Dehne <patrick@steidle.net>
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/taglib/CONTROL | 2 | ||||
| -rw-r--r-- | ports/taglib/portfile.cmake | 14 |
2 files changed, 12 insertions, 4 deletions
diff --git a/ports/taglib/CONTROL b/ports/taglib/CONTROL index 9756e8e8c..96b68ecfe 100644 --- a/ports/taglib/CONTROL +++ b/ports/taglib/CONTROL @@ -1,5 +1,5 @@ Source: taglib -Version: 1.11.1-20190531 +Version: 1.12.0-20210123 Description: TagLib Audio Meta-Data Library Homepage: https://github.com/taglib/taglib Build-Depends: zlib diff --git a/ports/taglib/portfile.cmake b/ports/taglib/portfile.cmake index c6e573526..88b7c4158 100644 --- a/ports/taglib/portfile.cmake +++ b/ports/taglib/portfile.cmake @@ -1,13 +1,21 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO taglib/taglib - REF ba7adc2bc261ed634c2a964185bcffb9365ad2f4 - SHA512 faf516f40f12031a37414ce9246ec409e64e570faebe2d604afdefbb7d665e0a0c9c68bec0e6dcb1c5ceb8fa8e1c3477f5ac75029f17beedd679fa3ea735ce6d + REF 4c14571647e3391dd8f59473903abc44707b4f1b + SHA512 2619013e38de4afce58d2c8a8fcb2fc34aeb4006c0657a942cb035a5b79ac1438609f89c31bc631b299eb270ac90f2d222c0ddeeb8151803cf7cda15ab3282b4 HEAD_REF master ) +if(VCPKG_CRT_LINKAGE STREQUAL static) + set(BUILD_SHARED_LIBS OFF) +else() + set(BUILD_SHARED_LIBS ON) +endif() + if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") - set(WINRT_OPTIONS -DHAVE_VSNPRINTF=1 -DPLATFORM_WINRT=1) + set(WINRT_OPTIONS -DHAVE_VSNPRINTF=1 -DPLATFORM_WINRT=1) + set(VCPKG_C_FLAGS "${VCPKG_C_FLAGS} /wd4996") + set(VCPKG_CXX_FLAGS "${VCPKG_CXX_FLAGS} /wd4996") endif() vcpkg_configure_cmake( |
