~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to src/acl/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/src/Common.am
 
2
include $(top_srcdir)/src/TestHeaders.am
 
3
 
 
4
noinst_LTLIBRARIES = libapi.la libstate.la libacls.la
 
5
 
 
6
## General data-independent ACL API
 
7
libapi_la_SOURCES = \
 
8
        Acl.cc \
 
9
        Acl.h \
 
10
        Checklist.cc \
 
11
        Checklist.h
 
12
 
 
13
## Data-dependent Squid/transaction state used by specific ACLs.
 
14
## Does not refer to specific ACLs to avoid circular dependencies.
 
15
libstate_la_SOURCES = \
 
16
        Data.h \
 
17
        Strategy.h \
 
18
        Strategised.cc \
 
19
        Strategised.h \
 
20
        \
 
21
        FilledChecklist.cc \
 
22
        FilledChecklist.h
 
23
 
 
24
## data-specific ACLs
 
25
libacls_la_SOURCES = \
 
26
        IntRange.cc \
 
27
        IntRange.h \
 
28
        RegexData.cc \
 
29
        RegexData.h \
 
30
        StringData.cc \
 
31
        StringData.h \
 
32
        Time.cc \
 
33
        Time.h \
 
34
        TimeData.cc \
 
35
        TimeData.h \
 
36
        \
 
37
        Asn.cc \
 
38
        Asn.h \
 
39
        Browser.cc \
 
40
        Browser.h \
 
41
        DestinationAsn.h \
 
42
        DestinationDomain.cc \
 
43
        DestinationDomain.h \
 
44
        DestinationIp.cc \
 
45
        DestinationIp.h \
 
46
        DomainData.cc \
 
47
        DomainData.h \
 
48
        ExtUser.cc \
 
49
        ExtUser.h \
 
50
        HttpHeaderData.cc \
 
51
        HttpHeaderData.h \
 
52
        HttpRepHeader.cc \
 
53
        HttpRepHeader.h \
 
54
        HttpReqHeader.cc \
 
55
        HttpReqHeader.h \
 
56
        HttpStatus.cc \
 
57
        HttpStatus.h \
 
58
        Ip.cc \
 
59
        Ip.h \
 
60
        MaxConnection.cc \
 
61
        MaxConnection.h \
 
62
        Method.cc \
 
63
        MethodData.cc \
 
64
        MethodData.h \
 
65
        Method.h \
 
66
        MyIp.cc \
 
67
        MyIp.h \
 
68
        MyPort.cc \
 
69
        MyPort.h \
 
70
        MyPortName.cc \
 
71
        MyPortName.h \
 
72
        PeerName.cc \
 
73
        PeerName.h \
 
74
        Protocol.cc \
 
75
        ProtocolData.cc \
 
76
        ProtocolData.h \
 
77
        Protocol.h \
 
78
        Referer.cc \
 
79
        Referer.h \
 
80
        ReplyHeaderStrategy.h \
 
81
        ReplyMimeType.cc \
 
82
        ReplyMimeType.h \
 
83
        RequestHeaderStrategy.h \
 
84
        RequestMimeType.cc \
 
85
        RequestMimeType.h \
 
86
        SourceAsn.h \
 
87
        SourceDomain.cc \
 
88
        SourceDomain.h \
 
89
        SourceIp.cc \
 
90
        SourceIp.h \
 
91
        Tag.cc \
 
92
        Tag.h \
 
93
        Url.cc \
 
94
        Url.h \
 
95
        UrlPath.cc \
 
96
        UrlPath.h \
 
97
        UrlPort.cc \
 
98
        UrlPort.h \
 
99
        UserData.cc \
 
100
        UserData.h \
 
101
        \
 
102
        Gadgets.cc \
 
103
        Gadgets.h
 
104
 
 
105
## Add conditional sources
 
106
## TODO: move these to their respectful dirs when those dirs are created
 
107
 
 
108
EXTRA_libacls_la_SOURCES =
 
109
 
 
110
SSL_ACLS = \
 
111
        CertificateData.cc \
 
112
        CertificateData.h  \
 
113
        Certificate.cc \
 
114
        Certificate.h  \
 
115
        SslError.cc \
 
116
        SslError.h \
 
117
        SslErrorData.cc \
 
118
        SslErrorData.h
 
119
 
 
120
if ENABLE_SSL
 
121
libacls_la_SOURCES += $(SSL_ACLS)
 
122
endif
 
123
 
 
124
EXTRA_libacls_la_SOURCES += $(SSL_ACLS)
 
125
 
 
126
 
 
127
ARP_ACLS = Arp.cc Arp.h
 
128
 
 
129
if ENABLE_ARP_ACL
 
130
libacls_la_SOURCES += $(ARP_ACLS)
 
131
endif
 
132
 
 
133
EXTRA_libacls_la_SOURCES += $(ARP_ACLS)