mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:29:00 +08:00
[libsrt] Fix feature tool (#41074)
Co-authored-by: Monica <v-liumonica@microsoft.com>
This commit is contained in:
parent
d9af3f5586
commit
ede6765542
30
ports/libsrt/fix-tool.patch
Normal file
30
ports/libsrt/fix-tool.patch
Normal file
@ -0,0 +1,30 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 7e8062a..2277e33 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -1300,11 +1300,13 @@ if (ENABLE_APPS)
|
||||
|
||||
# Applications
|
||||
|
||||
- srt_add_application(srt-live-transmit ${VIRTUAL_srtsupport})
|
||||
+ srt_add_application(srt-live-transmit ${VIRTUAL_srtsupport} ${VIRTUAL_srt})
|
||||
+ target_link_libraries(srt-live-transmit ${SSL_LIBRARIES})
|
||||
if (DEFINED EXTRA_stransmit)
|
||||
set_target_properties(srt-live-transmit PROPERTIES COMPILE_FLAGS "${EXTRA_stransmit}")
|
||||
endif()
|
||||
- srt_add_application(srt-file-transmit ${VIRTUAL_srtsupport})
|
||||
+ srt_add_application(srt-file-transmit ${VIRTUAL_srtsupport} ${VIRTUAL_srt})
|
||||
+ target_link_libraries(srt-file-transmit ${SSL_LIBRARIES})
|
||||
|
||||
if (MINGW)
|
||||
# FIXME: with MINGW, it fails to build apps that require C++11
|
||||
@@ -1313,7 +1315,8 @@ if (ENABLE_APPS)
|
||||
else()
|
||||
# srt-multiplex temporarily blocked
|
||||
#srt_add_application(srt-multiplex ${VIRTUAL_srtsupport})
|
||||
- srt_add_application(srt-tunnel ${VIRTUAL_srtsupport})
|
||||
+ srt_add_application(srt-tunnel ${VIRTUAL_srtsupport} ${VIRTUAL_srt})
|
||||
+ target_link_libraries(srt-tunnel ${SSL_LIBRARIES})
|
||||
target_compile_definitions(srt-tunnel PUBLIC -DSRT_ENABLE_VERBOSE_LOCK)
|
||||
endif()
|
||||
|
@ -7,6 +7,7 @@ vcpkg_from_github(
|
||||
PATCHES
|
||||
fix-static.patch
|
||||
pkgconfig.diff
|
||||
fix-tool.patch
|
||||
)
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" KEYSTONE_BUILD_STATIC)
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "libsrt",
|
||||
"version": "1.5.3",
|
||||
"port-version": 2,
|
||||
"port-version": 3,
|
||||
"description": "Secure Reliable Transport (SRT) is an open source transport technology that optimizes streaming performance across unpredictable networks, such as the Internet.",
|
||||
"homepage": "https://github.com/Haivision/srt",
|
||||
"license": "MPL-2.0",
|
||||
|
@ -5106,7 +5106,7 @@
|
||||
},
|
||||
"libsrt": {
|
||||
"baseline": "1.5.3",
|
||||
"port-version": 2
|
||||
"port-version": 3
|
||||
},
|
||||
"libsrtp": {
|
||||
"baseline": "2.5.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "d9f3ed628ea5aed328a62750b1af9c4d9685225d",
|
||||
"version": "1.5.3",
|
||||
"port-version": 3
|
||||
},
|
||||
{
|
||||
"git-tree": "578c7b45771245ff525647973280f997fef43d9b",
|
||||
"version": "1.5.3",
|
||||
|
Loading…
Reference in New Issue
Block a user