From b4ebbcf5a23a6f745e11fe3fa4542e12b323fc5f Mon Sep 17 00:00:00 2001 From: wight Date: Wed, 2 Mar 2005 18:38:13 +0000 Subject: [PATCH] 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 --- configure | 5 +++++ 1 file changed, 5 insertions(+) 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