]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/acl/Makefile.am
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / Makefile.am
index f9a4e54b768b75886240cfa6688c70a01805016f..cbbad58cd109806b19af313d2241972ee4c62a3f 100644 (file)
@@ -1,27 +1,45 @@
+## Copyright (C) 1996-2018 The Squid Software Foundation and contributors
+##
+## Squid software is distributed under GPLv2+ license and includes
+## contributions from numerous individuals and organizations.
+## Please see the COPYING and CONTRIBUTORS files for details.
+##
+
 include $(top_srcdir)/src/Common.am
 include $(top_srcdir)/src/TestHeaders.am
 
+SUBDIRS= external
+
 noinst_LTLIBRARIES = libapi.la libstate.la libacls.la
 
 ## General data-independent ACL API
 libapi_la_SOURCES = \
        Acl.cc \
        Acl.h \
+       BoolOps.cc \
+       BoolOps.h \
        Checklist.cc \
-       Checklist.h
+       Checklist.h \
+       forward.h \
+       InnerNode.cc \
+       InnerNode.h \
+       Options.h \
+       Options.cc \
+       Tree.cc \
+       Tree.h
 
 ## Data-dependent Squid/transaction state used by specific ACLs.
 ## Does not refer to specific ACLs to avoid circular dependencies.
 libstate_la_SOURCES = \
+       CharacterSetOption.h \
        Data.h \
        Strategy.h \
        Strategised.cc \
        Strategised.h \
-       \
        FilledChecklist.cc \
        FilledChecklist.h \
-       AclAddress.h \
-       AclAddress.cc
+       Address.h \
+       Address.cc
 
 ## data-specific ACLs
 libacls_la_SOURCES = \
@@ -35,11 +53,20 @@ libacls_la_SOURCES = \
        Time.h \
        TimeData.cc \
        TimeData.h \
-       \
+       AllOf.cc \
+       AllOf.h \
+       AnnotateClient.cc \
+       AnnotateClient.h \
+       AnnotateTransaction.cc \
+       AnnotateTransaction.h \
+       AnnotationData.cc \
+       AnnotationData.h \
+       AnyOf.cc \
+       AnyOf.h \
        Asn.cc \
        Asn.h \
-       Browser.cc \
-       Browser.h \
+       ConnectionsEncrypted.cc \
+       ConnectionsEncrypted.h \
        DestinationAsn.h \
        DestinationDomain.cc \
        DestinationDomain.h \
@@ -49,6 +76,10 @@ libacls_la_SOURCES = \
        DomainData.h \
        ExtUser.cc \
        ExtUser.h \
+       HasComponent.cc \
+       HasComponent.h \
+       HasComponentData.cc \
+       HasComponentData.h \
        HierCodeData.cc \
        HierCodeData.h \
        HierCode.cc \
@@ -75,6 +106,10 @@ libacls_la_SOURCES = \
        Method.h \
        MyPortName.cc \
        MyPortName.h \
+       Note.h \
+       Note.cc \
+       NoteData.h \
+       NoteData.cc \
        PeerName.cc \
        PeerName.h \
        Protocol.cc \
@@ -83,45 +118,58 @@ libacls_la_SOURCES = \
        Protocol.h \
        Random.cc \
        Random.h \
-       Referer.cc \
-       Referer.h \
        ReplyHeaderStrategy.h \
-       ReplyMimeType.cc \
        ReplyMimeType.h \
        RequestHeaderStrategy.h \
-       RequestMimeType.cc \
        RequestMimeType.h \
        SourceAsn.h \
        SourceDomain.cc \
        SourceDomain.h \
        SourceIp.cc \
        SourceIp.h \
+       SquidError.h \
+       SquidError.cc \
+       SquidErrorData.cc \
+       SquidErrorData.h \
        Tag.cc \
        Tag.h \
+       TransactionInitiator.cc \
+       TransactionInitiator.h \
        Url.cc \
        Url.h \
+       UrlLogin.cc \
+       UrlLogin.h \
        UrlPath.cc \
        UrlPath.h \
        UrlPort.cc \
        UrlPort.h \
        UserData.cc \
        UserData.h \
-       \
        AclNameList.h \
        AclDenyInfoList.h \
        Gadgets.cc \
-       Gadgets.h
+       Gadgets.h \
+       AclSizeLimit.cc \
+       AclSizeLimit.h
 
 ## Add conditional sources
-## TODO: move these to their respectful dirs when those dirs are created
+## TODO: move these to their respective dirs when those dirs are created
 
 EXTRA_libacls_la_SOURCES =
 
 SSL_ACLS = \
+       AtStep.cc \
+       AtStep.h \
+       AtStepData.cc \
+       AtStepData.h \
         CertificateData.cc \
         CertificateData.h  \
         Certificate.cc \
         Certificate.h  \
+       ServerCertificate.cc \
+       ServerCertificate.h \
+       ServerName.cc \
+       ServerName.h \
         SslError.cc \
         SslError.h \
         SslErrorData.cc \
@@ -130,14 +178,22 @@ SSL_ACLS = \
 if ENABLE_SSL
 libacls_la_SOURCES += $(SSL_ACLS)
 endif
-
 EXTRA_libacls_la_SOURCES += $(SSL_ACLS)
 
+ADAPT_ACLS= \
+       AdaptationService.h \
+       AdaptationService.cc \
+       AdaptationServiceData.h \
+       AdaptationServiceData.cc
+
+if ENABLE_ADAPTATION
+libacls_la_SOURCES += $(ADAPT_ACLS)
+endif
+EXTRA_libacls_la_SOURCES += $(ADAPT_ACLS)
 
 ARP_ACLS = Arp.cc Arp.h Eui64.cc Eui64.h
 
-if USE_SQUID_EUI
+if ENABLE_EUI
 libacls_la_SOURCES += $(ARP_ACLS)
 endif
-
 EXTRA_libacls_la_SOURCES += $(ARP_ACLS)