aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris \"Koying\" Browet <cbro@semperpax.com>2014-05-09 19:36:40 +0200
committerChris "Koying" Browet <cbro@semperpax.com>2014-05-10 09:59:24 +0200
commit21778d5b60613c44063e4a5ae8425517f4c94072 (patch)
tree5f5f34e0877edfa2d1be5994a71d7a4c12d1f15a
parent1c71180b9086606c050951e1f1c5c23d2751b5da (diff)
FIX: [rtmp] do not hardlink librtmp
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 806680f355..b5ac25e2ad 100644
--- a/configure.in
+++ b/configure.in
@@ -1534,7 +1534,7 @@ if test "$use_librtmp" != "no"; then
XB_FIND_SONAME([RTMP], [rtmp], [use_librtmp])
AC_DEFINE([HAS_LIBRTMP], [1], [Whether to use libRTMP library.])
RTMP_ALL_LIBS=$(${PKG_CONFIG} --static --libs-only-l --silence-errors librtmp)
- test "$use_static_ffmpeg" = "yes" && LIBS="$LIBS $RTMP_ALL_LIBS"],
+ test "$use_static_ffmpeg" = "yes" && LIBS="$LIBS $RTMP_ALL_LIBS"; LIBS="`echo $LIBS | sed 's/-lrtmp//g'`"],
[AC_CHECK_HEADERS([librtmp/log.h librtmp/amf.h librtmp/rtmp.h],,
[if test "$use_librtmp" = "yes"; then
AC_MSG_ERROR($librtmp_not_found)