]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/SMB/required.m4
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / auth / basic / SMB / required.m4
1 ## Copyright (C) 1996-2020 The Squid Software Foundation and contributors
2 ##
3 ## Squid software is distributed under GPLv2+ license and includes
4 ## contributions from numerous individuals and organizations.
5 ## Please see the COPYING and CONTRIBUTORS files for details.
6 ##
7
8 # The shell script helper require smbclient to be in the environment PATH.
9 # We can install anyway, but warn if smbclient not found already
10 #
11 AC_PATH_PROG(SMBCLIENT, smbclient)
12 if test "x$SMBCLIENT" = "x"; then
13 AC_MSG_WARN([Samba smbclient not found in default location. basic_smb_auth may not work on this machine])
14 fi
15 # allow script install anyway.
16 BUILD_HELPER="SMB"