]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/auth/basic/NIS/required.m4
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / auth / basic / NIS / required.m4
... / ...
CommitLineData
1## Copyright (C) 1996-2023 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
8BUILD_HELPER="NIS"
9AC_CHECK_HEADERS([ \
10 sys/types.h \
11 rpc/rpc.h \
12 rpcsvc/ypclnt.h \
13 rpcsvc/yp_prot.h \
14 crypt.h \
15],[],[
16 BUILD_HELPER=""
17],[
18 AC_INCLUDES_DEFAULT([
19#if HAVE_RPC_RPC_H
20#include <rpc/rpc.h>
21#endif
22 ])
23])