diff options
author | anssih <anssih@svn> | 2010-07-20 14:44:22 +0000 |
---|---|---|
committer | anssih <anssih@svn> | 2010-07-20 14:44:22 +0000 |
commit | 6b61ad650dc691c836d4aaf3d8e1af45a7c9b225 (patch) | |
tree | 92b27653e7c0a22895df4cddb6ca703606ef3184 /configure.in | |
parent | d59a1ab0e49ebb9a33ce4cef9af34a5b493de6dd (diff) |
fixed: use proper soname for loading librtmp on linux
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32008 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index bde554d751..6c0add351c 100644 --- a/configure.in +++ b/configure.in @@ -738,6 +738,9 @@ if test "$use_librtmp" != "no"; then use_librtmp="no" fi ]) + if test "$use_librtmp" != "no" && test "$host_vendor" != "apple"; then + XB_FIND_SONAME([RTMP], [rtmp], [use_librtmp]) + fi if test "$use_librtmp" != "no"; then AC_DEFINE([HAS_LIBRTMP], [1], [Whether to use libRTMP library.]) fi |