From ea930a9237d403035e1f8a534dce9482390d2063 Mon Sep 17 00:00:00 2001 From: David Spencer Date: Fri, 21 Jul 2017 23:01:34 +0100 Subject: network/squid: Add new option. Signed-off-by: David Spencer --- network/squid/README | 5 +++++ network/squid/squid.SlackBuild | 6 ++++++ 2 files changed, 11 insertions(+) (limited to 'network') diff --git a/network/squid/README b/network/squid/README index aab94c3746..7756f08719 100644 --- a/network/squid/README +++ b/network/squid/README @@ -10,3 +10,8 @@ arranged in a hierarchy or mesh for additional bandwidth savings. See /usr/doc/squid-*/README.SBo for configuration help. Note that the default squid.conf and /etc/logrotate.d/squid files have changed in this release, so be sure to merge the changes into place. + +To build squid with ICAP client support, specify the option "ICAP=yes", +for example: + + ICAP=yes ./squid.SlackBuild diff --git a/network/squid/squid.SlackBuild b/network/squid/squid.SlackBuild index 0729192759..900d9081c8 100644 --- a/network/squid/squid.SlackBuild +++ b/network/squid/squid.SlackBuild @@ -73,6 +73,11 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +OPT_ICAP="" +if [ "${ICAP:-no}" = "yes" ]; then + OPT_ICAP="--enable-icap-client" +fi + # last option is needed on current CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -90,6 +95,7 @@ CXXFLAGS="$SLKCFLAGS" \ --enable-auth-basic \ --enable-linux-netfilter \ --enable-async-io \ + $OPT_ICAP \ --build=$ARCH-slackware-linux \ --disable-strict-error-checking -- cgit v1.2.3-80-g2a13