1
mirror of https://github.com/mpv-player/mpv synced 2024-12-28 06:03:45 +01:00

libsmbclient is sometimes built with ssl support. This takes it into account

and tests if -lsmbclient needs -lssl.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14891 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
wight 2005-03-02 18:38:13 +00:00
parent b52819a6d7
commit b4ebbcf5a2

5
configure vendored
View File

@ -3229,6 +3229,11 @@ EOF
if cc_check -lsmbclient $_ld_dl -lnsl ; then
_smbsupport=yes
_ld_smb="-lsmbclient $_ld_dl -lnsl"
else
if cc_check -lsmbclient $_ld_dl -lssl -lnsl ; then
_smbsupport=yes
_ld_smb="-lsmbclient $_ld_dl -lssl -lnsl"
fi
fi
fi
fi