[MPlayer-dev-eng] [PATCH] configure: fix live555 detection

KO Myung-Hun komh78 at gmail.com
Fri Jan 13 11:31:22 EET 2017


live555 detection always fails due to mismatched parameters.

-----
P:/tmp/mplayer-configure-30566-10218/tmp.cpp:7 (P:/tmp/cckGybhw.o): Undefined symbol RTSPClient::createNew(UsageEnvironment&, int, char const*, unsigned short) referenced from text segment
-----
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index bcc71cc..0b210ed 100755
--- a/configure
+++ b/configure
@@ -7090,7 +7090,7 @@ if test "$_live" = auto  && test "$networking" = yes ; then
 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
 #endif
 #include "BasicUsageEnvironment.hh"
-int main(void) { RTSPClient::createNew(*BasicUsageEnvironment::createNew(*BasicTaskScheduler::createNew()), 0, "", 0); return 0; }
+int main(void) { RTSPClient::createNew(*BasicUsageEnvironment::createNew(*BasicTaskScheduler::createNew()), "", 0); return 0; }
 EOF
 
   _live=no
-- 
2.9.2



More information about the MPlayer-dev-eng mailing list