mirror of https://github.com/mpv-player/mpv
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
This commit is contained in:
parent
d6f39637d6
commit
1e5650e85e
4
Makefile
4
Makefile
|
@ -36,9 +36,9 @@ OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)
|
|||
VO_LIBS = $(AA_LIB) $(X_LIB) $(SDL_LIB) $(GGI_LIB) $(MP1E_LIB) $(MLIB_LIB) $(SVGA_LIB) $(DIRECTFB_LIB)
|
||||
AO_LIBS = $(ARTS_LIB) $(ESD_LIB) $(NAS_LIB) $(SGIAUDIO_LIB)
|
||||
CODEC_LIBS = $(AV_LIB) $(FAME_LIB) $(MAD_LIB) $(VORBIS_LIB) $(FAAD_LIB) $(LIBLZO_LIB) $(DECORE_LIB) $(XVID_LIB) $(PNG_LIB) $(Z_LIB) $(JPEG_LIB) $(ALSA_LIB) $(XMMS_LIB)
|
||||
COMMON_LIBS = libmpcodecs/libmpcodecs.a mp3lib/libMP3.a liba52/liba52.a libmpeg2/libmpeg2.a $(W32_LIB) $(DS_LIB) libaf/libaf.a libmpdemux/libmpdemux.a input/libinput.a postproc/libswscale.a osdep/libosdep.a $(CSS_LIB) $(CODEC_LIBS) $(FREETYPE_LIB) $(TERMCAP_LIB) $(CDPARANOIA_LIB) $(STREAMING_LIB) $(WIN32_LIB) $(GIF_LIB) $(MACOSX_FRAMEWORKS)
|
||||
COMMON_LIBS = libmpcodecs/libmpcodecs.a mp3lib/libMP3.a liba52/liba52.a libmpeg2/libmpeg2.a $(W32_LIB) $(DS_LIB) libaf/libaf.a libmpdemux/libmpdemux.a input/libinput.a postproc/libswscale.a osdep/libosdep.a $(CSS_LIB) $(CODEC_LIBS) $(FREETYPE_LIB) $(TERMCAP_LIB) $(CDPARANOIA_LIB) $(STREAMING_LIB) $(WIN32_LIB) $(GIF_LIB) $(MACOSX_FRAMEWORKS) $(SMBSUPPORT_LIB)
|
||||
|
||||
CFLAGS = $(OPTFLAGS) -Ilibmpdemux -Iloader -Ilibvo $(FREETYPE_INC) $(EXTRA_INC) $(CDPARANOIA_INC) $(SDL_INC) # -Wall
|
||||
CFLAGS = $(OPTFLAGS) -Ilibmpdemux -Iloader -Ilibvo $(FREETYPE_INC) $(EXTRA_INC) $(CDPARANOIA_INC) $(SDL_INC) $(SMBSUPPORT_INC) # -Wall
|
||||
|
||||
ifeq ($(TARGET_ALTIVEC),yes)
|
||||
ifeq ($(TARGET_OS),Darwin)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue