summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorwight <wight@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-03-02 18:38:13 +0000
committerwight <wight@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-03-02 18:38:13 +0000
commitb4ebbcf5a23a6f745e11fe3fa4542e12b323fc5f (patch)
treedbc48006a9495c3af974da2712af1870eb4892eb /configure
parentb52819a6d7517324d409b0caffef3f76788a50b8 (diff)
downloadmpv-b4ebbcf5a23a6f745e11fe3fa4542e12b323fc5f.tar.bz2
mpv-b4ebbcf5a23a6f745e11fe3fa4542e12b323fc5f.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 76e275a247..40fa86efdb 100755
--- a/configure
+++ b/configure
@@ -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