mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 23:59:08 +08:00
[x264] Fix *inx dynamic build (#13684)
* [x264] Fix *inx dynamic build * bump version
This commit is contained in:
parent
b9be644f8b
commit
a8c046b483
@ -1,6 +1,6 @@
|
||||
Source: x264
|
||||
Version: 157-303c484ec828ed0
|
||||
Port-Version: 10
|
||||
Port-Version: 11
|
||||
Homepage: https://github.com/mirror/x264
|
||||
Description: x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format
|
||||
Build-Depends: pthread (linux&osx)
|
||||
|
@ -58,10 +58,10 @@ if(VCPKG_TARGET_IS_WINDOWS)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic" AND VCPKG_TARGET_IS_WINDOWS)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/lib/libx264.dll.lib ${CURRENT_PACKAGES_DIR}/lib/libx264.lib)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/libx264.dll.lib ${CURRENT_PACKAGES_DIR}/debug/lib/libx264.lib)
|
||||
else()
|
||||
elseif(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
# force U_STATIC_IMPLEMENTATION macro
|
||||
file(READ ${CURRENT_PACKAGES_DIR}/include/x264.h HEADER_CONTENTS)
|
||||
string(REPLACE "defined(U_STATIC_IMPLEMENTATION)" "1" HEADER_CONTENTS "${HEADER_CONTENTS}")
|
||||
|
Loading…
Reference in New Issue
Block a user