]>
Commit | Line | Data |
---|---|---|
1f7b830e | 1 | ## Copyright (C) 1996-2025 The Squid Software Foundation and contributors |
5b95b903 AJ |
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 | ||
a1c22363 AJ |
8 | AS_IF([test "x$enable_auth" != "xno"],[ |
9 | BASIC_AUTH_HELPERS="" | |
10 | SQUID_HELPER_FEATURE_CHECK([auth_basic],[$enable_auth],[auth/basic],[ | |
11 | # NP: we only need this list because m4_include() does not accept variables | |
12 | SQUID_CHECK_HELPER([DB],[auth/basic]) | |
13 | SQUID_CHECK_HELPER([LDAP],[auth/basic]) | |
14 | SQUID_CHECK_HELPER([NCSA],[auth/basic]) | |
15 | SQUID_CHECK_HELPER([NIS],[auth/basic]) | |
16 | SQUID_CHECK_HELPER([PAM],[auth/basic]) | |
17 | SQUID_CHECK_HELPER([POP3],[auth/basic]) | |
18 | SQUID_CHECK_HELPER([RADIUS],[auth/basic]) | |
19 | SQUID_CHECK_HELPER([SASL],[auth/basic]) | |
20 | SQUID_CHECK_HELPER([SMB],[auth/basic]) | |
a1c22363 AJ |
21 | SQUID_CHECK_HELPER([SSPI],[auth/basic]) |
22 | SQUID_CHECK_HELPER([fake],[auth/basic]) | |
23 | SQUID_CHECK_HELPER([getpwnam],[auth/basic]) | |
24 | ]) | |
25 | ||
26 | BASIC_AUTH_HELPERS=$squid_cv_BUILD_HELPERS | |
27 | AUTH_MODULES="$AUTH_MODULES basic" | |
28 | AC_DEFINE([HAVE_AUTH_MODULE_BASIC],1,[Basic auth module is built]) | |
29 | ]) | |
5a0c5a92 AJ |
30 | AM_CONDITIONAL(ENABLE_AUTH_BASIC, test "x$enable_auth_basic" != "xno") |
31 | AC_SUBST(BASIC_AUTH_HELPERS) |