]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/external/AD_group/required.m4
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / external / AD_group / required.m4
CommitLineData
5b74111a 1## Copyright (C) 1996-2018 The Squid Software Foundation and contributors
ca02e0ec
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
5eabe4b4 8for hdr in w32api/dsrole.h dsrole.h; do
cf8c1446
AJ
9 AC_COMPILE_IFELSE([
10 AC_LANG_PROGRAM([[#include <$hdr>]], [[
11 PDSROLE_PRIMARY_DOMAIN_INFO_BASIC pDSRoleInfo;
12 DWORD ret = DsRoleGetPrimaryDomainInformation(NULL, DsRolePrimaryDomainInfoBasic, (PBYTE *) & pDSRoleInfo);
13 ]])
14 ],[BUILD_HELPER="AD_group"],[])
5eabe4b4 15done