mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
net/liveMedia: Update to 2025.01.17
http://www.live555.com/liveMedia/public/changelog.txt
This commit is contained in:
parent
f3a775e6cc
commit
2be3e8d215
3 changed files with 20 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
PORTNAME= liveMedia
|
PORTNAME= liveMedia
|
||||||
DISTVERSION= 2024.10.31
|
DISTVERSION= 2025.01.17
|
||||||
PORTEPOCH= 2
|
PORTEPOCH= 2
|
||||||
CATEGORIES= net devel
|
CATEGORIES= net devel
|
||||||
MASTER_SITES= https://download.videolan.org/contrib/live555/
|
MASTER_SITES= https://download.videolan.org/contrib/live555/
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1731553276
|
TIMESTAMP = 1738821860
|
||||||
SHA256 (live.2024.10.31.tar.gz) = 75a4568a0a979326674ca45dfd1dfaba9d916380e80cc46af7792ed740595774
|
SHA256 (live.2025.01.17.tar.gz) = 273d9cf77468015c2377e50e384e3eea67cf255c75fe60a175e9e0917afe847b
|
||||||
SIZE (live.2024.10.31.tar.gz) = 696459
|
SIZE (live.2025.01.17.tar.gz) = 696558
|
||||||
|
|
16
net/liveMedia/files/patch-testProgs_testRTSPClient.cpp
Normal file
16
net/liveMedia/files/patch-testProgs_testRTSPClient.cpp
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
Fix build.
|
||||||
|
|
||||||
|
testRTSPClient.cpp:64:24: error: copying variable of type 'EventLoopWatchVariable' (aka 'atomic<char>') invokes deleted constructor
|
||||||
|
64 | EventLoopWatchVariable eventLoopWatchVariable = 0;
|
||||||
|
|
||||||
|
--- testProgs/testRTSPClient.cpp.orig 2025-01-17 15:16:46 UTC
|
||||||
|
+++ testProgs/testRTSPClient.cpp
|
||||||
|
@@ -61,7 +61,7 @@ void usage(UsageEnvironment& env, char const* progName
|
||||||
|
env << "\t(where each <rtsp-url-i> is a \"rtsp://\" URL)\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
-EventLoopWatchVariable eventLoopWatchVariable = 0;
|
||||||
|
+EventLoopWatchVariable eventLoopWatchVariable;
|
||||||
|
|
||||||
|
int main(int argc, char** argv) {
|
||||||
|
// Begin by setting up our usage environment:
|
Loading…
Add table
Reference in a new issue