]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/SMB/required.m4
68cd3fee63381c0e1e1ab1a4674924e70c0efafa
[thirdparty/squid.git] / src / auth / basic / SMB / required.m4
1 ## Copyright (C) 1996-2022 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 AS_IF([test "x$SMBCLIENT" = "x"],[
13 AC_MSG_WARN([Samba smbclient not found in default location. basic_smb_auth may not work on this machine])
14 ])
15 # allow script install anyway.
16 BUILD_HELPER="SMB"