From: Francesco Chemolli Date: Mon, 28 Oct 2013 15:43:39 +0000 (+0100) Subject: made stub_libacls conditional on USE_AUTH X-Git-Tag: SQUID_3_5_0_1~570^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4139eca4e74d90f4207d95572306ea81072dd44;p=thirdparty%2Fsquid.git made stub_libacls conditional on USE_AUTH --- diff --git a/src/tests/stub_libacls.cc b/src/tests/stub_libacls.cc index 06bce643e2..9c3f792536 100644 --- a/src/tests/stub_libacls.cc +++ b/src/tests/stub_libacls.cc @@ -3,6 +3,7 @@ #define STUB_API "auth/libacls.la" #include "STUB.h" +#if USE_AUTH #include "acl/Acl.h" /* for allow_t */ #include "auth/Acl.h" @@ -38,3 +39,5 @@ void ProxyAuthLookup::LookupDone(void *) STUB ACL * ACLProxyAuth::clone() const STUB int ACLProxyAuth::matchForCache(ACLChecklist *) STUB int ACLProxyAuth::matchProxyAuth(ACLChecklist *) STUB + +#endif /* USE_AUTH */