summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-21 16:06:11 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-21 16:06:11 +0000
commit1e5650e85ed3a8b431d1e8844e16bc19ec0d653c (patch)
treedaf254e635a13074add077a9a0b6d0a5ebfed651 /configure
parentd6f39637d6871c6463587990877b7a89f8e6e8d4 (diff)
downloadmpv-1e5650e85ed3a8b431d1e8844e16bc19ec0d653c.tar.bz2
mpv-1e5650e85ed3a8b431d1e8844e16bc19ec0d653c.tar.xz
libsmbclient detection support, slightly rewritten the original patch sent by Vladimir Moushkov <vlindos_mpdev@abv.bg>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9629 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure35
1 files changed, 35 insertions, 0 deletions
diff --git a/configure b/configure
index 738aed2753..94ba3b7201 100755
--- a/configure
+++ b/configure
@@ -154,6 +154,7 @@ Optional features:
--disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
--disable-streaming disable network streaming support
(support for: http/mms/rtp) [enable]
+ --enable-smb enable Samba (SMB) input support [autodetect]
--enable-live enable LIVE.COM Streaming Media support [disable]
--enable-dvdnav enable dvdnav support [disable]
--disable-dvdread Disable libdvdread support [autodetect]
@@ -1034,6 +1035,7 @@ _tv_v4l=auto
_tv_bsdbt848=auto
_edl=yes
_streaming=yes
+_smbsupport=auto
_vidix=auto
_joystick=no
_xvid=auto
@@ -1200,6 +1202,8 @@ for ac_option do
--disable-fastmemcpy) _fastmemcpy=no ;;
--enable-streaming) _streaming=yes ;;
--disable-streaming) _streaming=no ;;
+ --enable-smb) _smbsupport=yes ;;
+ --disable-smb) _smbsupport=no ;;
--enable-vidix) _vidix=yes ;;
--disable-vidix) _vidix=no ;;
--enable-joystick) _joystick=yes ;;
@@ -2318,6 +2322,32 @@ fi
echores "$_macosx"
+echocheck "Samba support (libsmbclient)"
+if test "$_smbsupport" = auto; then
+ _smbsupport=no
+ cat > $TMPC << EOF
+#include <libsmbclient.h>
+int main(void) { smbc_opendir("smb://"); return 0; }
+EOF
+ _ld_smb=" -L/usr/lib -lsmbclient"
+ _inc_smb=" -I/usr/include "
+ if cc_check $_ld_smb $_inc_smb ; then
+# this is not working for me becouse it needs -ldl and some NIS (YP) libs
+# $_ld_dl and -lyp ? should be added
+ _smbsupport=yes
+ fi
+fi
+
+if test "$_smbsupport" = yes; then
+ _def_smbsupport="#define LIBSMBCLIENT"
+ _inputmodules="smb $_inputmodules"
+else
+ _def_smbsupport="#undef LIBSMBCLIENT"
+ _noinputmodules="smb $_noinputmodules"
+fi
+echores "$_smbsupport"
+
+
#########
# VIDEO #
#########
@@ -5018,6 +5048,8 @@ LIBLZO_LIB= $_ld_liblzo
MAD_LIB = $_ld_mad
VORBIS_LIB = $_ld_vorbis $_ld_libdv
FAAD_LIB = $_ld_faad
+SMBSUPPORT_INC = $_inc_smb
+SMBSUPPORT_LIB = $_ld_smb
XMMS_PLUGINS = $_xmms
XMMS_LIB = $_xmms_lib
MACOSX = $_macosx
@@ -5381,6 +5413,9 @@ $_def_lrintf
/* nanosleep support */
$_def_nanosleep
+/* SMB support */
+$_def_smbsupport
+
/* termcap flag for getch2.c */
$_def_termcap