net/liveMedia: Update to 2025.01.17

http://www.live555.com/liveMedia/public/changelog.txt
This commit is contained in:
Jason E. Hale 2025-02-06 01:23:45 -05:00
parent f3a775e6cc
commit 2be3e8d215
3 changed files with 20 additions and 4 deletions

View file

@ -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/

View file

@ -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

View 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: