]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squid
toolchain: update to gcc-7.3.0 and enable retpolines on x86_64 and i586
[ipfire-2.x.git] / lfs / squid
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
101765c0 4# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
c60ad61a 27VER = 3.5.27
cd1a2927
MT
28
29THISAPP = squid-$(VER)
754f508b 30DL_FILE = $(THISAPP).tar.xz
e383179b 31DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
11b5e5cb
AF
35CXXFLAGS+= -Wno-error=format-truncation
36
cd1a2927
MT
37###############################################################################
38# Top-level Rules
39###############################################################################
40
363fb6af 41objects = $(DL_FILE)
cd1a2927
MT
42
43$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
44
c60ad61a 45$(DL_FILE)_MD5 = 39ef8199675d48a314b540f92c00c545
cd1a2927
MT
46
47install : $(TARGET)
48
49check : $(patsubst %,$(DIR_CHK)/%,$(objects))
50
51download :$(patsubst %,$(DIR_DL)/%,$(objects))
52
53md5 : $(subst %,%_MD5,$(objects))
54
55###############################################################################
56# Downloading, checking, md5sum
57###############################################################################
6bd4bcda 58
cd1a2927
MT
59$(patsubst %,$(DIR_CHK)/%,$(objects)) :
60 @$(CHECK)
61
62$(patsubst %,$(DIR_DL)/%,$(objects)) :
63 @$(LOAD)
64
65$(subst %,%_MD5,$(objects)) :
66 @$(MD5)
67
68###############################################################################
69# Installation Details
70###############################################################################
71
72$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
73 @$(PREBUILD)
754f508b 74 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE)
101765c0 75 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squid/SQUID-2018_1.patch
eb03c511 76 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squid/SQUID-2018_2.patch
101765c0 77 cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/squid/squid-3.5.27-fix-max-file-descriptors.patch
198c3926 78
02a60a9b
MT
79 cd $(DIR_APP) && autoreconf -vfi
80 cd $(DIR_APP)/libltdl && autoreconf -vfi
81
11b5e5cb 82 cd $(DIR_APP) && CXXFLAGS="$(CXXFLAGS)" ./configure \
754f508b
MT
83 --prefix=/usr \
84 --sysconfdir=/etc/squid \
85 --datadir=/usr/lib/squid \
86 --mandir=/usr/share/man \
87 --libexecdir=/usr/lib/squid \
88 --localstatedir=/var \
88b1e637 89 --disable-ssl \
754f508b
MT
90 --disable-icmp \
91 --disable-wccp \
198c3926
MF
92 --disable-wccpv2 \
93 --disable-kqueue \
94 --disable-esi \
95 --disable-arch-native \
9a4bfe02 96 --enable-ipv6 \
198c3926 97 --enable-poll \
754f508b 98 --enable-ident-lookups \
efccb433 99 --enable-storeio=aufs,diskd,ufs \
754f508b
MT
100 --enable-underscores \
101 --enable-http-violations \
efccb433 102 --enable-removal-policies=heap,lru \
754f508b
MT
103 --enable-delay-pools \
104 --enable-linux-netfilter \
105 --enable-snmp \
106 --enable-auth \
107 --enable-auth-basic \
108 --enable-auth-digest \
109 --enable-auth-negotiate \
110 --enable-auth-ntlm \
111 --enable-log-daemon-helpers \
112 --enable-url-rewrite-helpers \
113 --enable-build-info \
114 --enable-eui \
198c3926 115 --enable-async-io=16 \
754f508b
MT
116 --enable-unlinkd \
117 --enable-internal-dns \
118 --enable-epoll \
754f508b
MT
119 --enable-select \
120 --enable-cache-digests \
121 --enable-forw-via-db \
122 --enable-htcp \
754f508b 123 --enable-kill-parent-hack \
754f508b 124 --enable-icap-client \
69a324f0 125 --enable-zph-qos \
198c3926
MF
126 --with-dl \
127 --with-filedescriptors=$$(( 16384 * 64 )) \
efccb433 128 --with-large-files
ed38f89d 129
fd3e7da0 130 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927
MT
131 cd $(DIR_APP) && make install
132
133 rm -f /etc/squid/squid.conf
46c01c09 134 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
fe1656d2
CS
135 rm -f /etc/squid/cachemgr.conf
136 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
cd1a2927 137 rm -f /etc/squid/errors
d4c6ba21 138 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
cd1a2927 139
46c01c09 140 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
cd1a2927 141 touch /var/log/squid/access.log
46c01c09
MT
142 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
143
fe1656d2
CS
144 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
145 chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi
146
46c01c09
MT
147 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
148 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
149 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
e79f3ac0
AF
150 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
151 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
4f4092e3
CS
152 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
153
bffe0abd 154 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator/updxlrator-lib.pl
5ae664e1 155
46c01c09 156 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
5ae664e1
AF
157 /var/ipfire/updatexlrator/bin/download \
158 /var/ipfire/updatexlrator/bin/convert \
4f4092e3
CS
159 /var/ipfire/updatexlrator/bin/lscache \
160 /var/ipfire/updatexlrator/bin/checkdeaddl
46c01c09 161
09eb4f00
MT
162 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
163 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
164 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
46c01c09
MT
165
166 chown -R nobody:nobody /var/ipfire/updatexlrator
5db10f47
AF
167 chown nobody.squid /var/updatecache
168 chown nobody.squid /var/updatecache/download
169 chown nobody.squid /var/updatecache/metadata
170 chmod 775 /var/updatecache
171 chmod 775 /var/updatecache/download
172 chmod 775 /var/updatecache/metadata
46c01c09 173 chmod 755 /var/log/updatexlrator
bd24e1fa 174 chmod 755 /srv/web/ipfire/html/images/updbooster
268292e7 175
b4f8d26c
MT
176 chown squid:squid /var/log/squid
177 ln -sf /usr/lib/squid /usr/lib/squid/auth
268292e7
CS
178 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
179 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
b4f8d26c 180 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
46c01c09 181
ab4a5a35
AF
182 #Copy stylesheets for the errorpages
183 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
184 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
185
cd1a2927
MT
186 @rm -rf $(DIR_APP)
187 @$(POSTBUILD)