1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

Fix build with updated net/liveMedia.

PR:		ports/181610
Submitted by:	Florent Peterschmitt <florent@peterschmitt.fr>
Obtained from:	vlc upstream git via archlinux
This commit is contained in:
Juergen Lock 2013-08-29 17:33:11 +00:00
parent c8a6f6e5a5
commit 7971c20258
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=325612

View File

@ -0,0 +1,29 @@
From ea444abae1d09b751314b24f6352e55be335621d Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Kempf <jb@videolan.org>
Date: Thu, 25 Jul 2013 01:14:32 +0200
Subject: [PATCH] Fix live555 breakage in last update
---
modules/demux/live555.cpp | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index 9e02630..7a1ab16 100644
--- modules/demux/live555.cpp
+++ modules/demux/live555.cpp
@@ -243,7 +243,11 @@ public:
char const* applicationName, portNumBits tunnelOverHTTPPortNum,
demux_sys_t *p_sys) :
RTSPClient( env, rtspURL, verbosityLevel, applicationName,
- tunnelOverHTTPPortNum )
+ tunnelOverHTTPPortNum
+#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1373932800
+ , -1
+#endif
+ )
{
this->p_sys = p_sys;
}
--
1.8.3.4