diff options
author | Arne Morten Kvarving <cptspiff@gmail.com> | 2016-06-11 17:24:38 +0200 |
---|---|---|
committer | Arne Morten Kvarving <cptspiff@gmail.com> | 2016-06-11 17:24:53 +0200 |
commit | d04f43a4eb6f920cc42a28627b580f17e2be1bb5 (patch) | |
tree | 9ef5f0010f045cedabc9b69989729c4a581094d0 /configure.ac | |
parent | 4205354d18e2b87f61e91948ebabed9240111cfb (diff) |
changed: remove internal librtmp support
moved to an inputstream add-on
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/configure.ac b/configure.ac index f906bde238..f3e5ddf774 100644 --- a/configure.ac +++ b/configure.ac @@ -186,8 +186,6 @@ vaapi_not_found="== Could not find libva. VAAPI support disabled. ==" vaapi_disabled="== VAAPI support manually disabled. ==" openmax_disabled="== OpenMax support manually disabled. ==" openmax_not_found="== Could not find OpenMax headers. OpenMax support disabled. ==" -librtmp_not_found="== Could not find libRTMP. RTMP support disabled. ==" -librtmp_disabled="== RTMP support disabled. ==" libnfs_not_found="== Could not find libnfs. NFS client support disabled. ==" libnfs_disabled="== NFS support disabled. ==" libshairplay_not_found="== Could not find libshairplay. ==" @@ -323,12 +321,6 @@ AC_ARG_ENABLE([ssh], [use_ssh=$enableval], [use_ssh=yes]) -AC_ARG_ENABLE([rtmp], - [AS_HELP_STRING([--enable-rtmp], - [enable RTMP support via librtmp (default is auto)])], - [use_librtmp=$enableval], - [use_librtmp=auto]) - AC_ARG_ENABLE([samba], [AS_HELP_STRING([--disable-samba], [disable SAMBA support (default is enabled)])], @@ -1285,26 +1277,6 @@ else AC_MSG_ERROR(libssh not found)) fi -# libRTMP -if test "$use_librtmp" != "no"; then - AC_CHECK_HEADERS([librtmp/log.h librtmp/amf.h librtmp/rtmp.h],, - [if test "$use_librtmp" = "yes"; then - AC_MSG_ERROR($librtmp_not_found) - elif test "$use_librtmp" != "no"; then - AC_MSG_NOTICE($librtmp_not_found) - use_librtmp="no" - fi - ]) - if test "$use_librtmp" != "no"; 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 -else - AC_MSG_NOTICE($librtmp_disabled) -fi - # samba if test "x$use_samba" != "xno"; then PKG_CHECK_MODULES([SAMBA], [smbclient], @@ -2022,12 +1994,6 @@ else final_message="$final_message\n libssh support:\tNo" fi -if test "$use_librtmp" != "no"; then - final_message="$final_message\n libRTMP support:\tYes" -else - final_message="$final_message\n libRTMP support:\tNo" -fi - if test "x$use_samba" != "xno"; then final_message="$final_message\n libsmbclient support:\tYes" else |