2009-12-23 13:30:45 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# squid
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2013-03-24 03:47:50 +01:00
|
|
|
SQUID_VERSION = 3.3.3
|
2013-03-04 07:00:03 +01:00
|
|
|
SQUID_SITE = http://www.squid-cache.org/Versions/v3/3.3
|
2012-10-29 11:57:16 +01:00
|
|
|
SQUID_LICENSE = GPLv2+
|
|
|
|
SQUID_LICENSE_FILES = COPYING
|
|
|
|
SQUID_DEPENDENCIES = libcap host-libcap host-pkgconf \
|
|
|
|
$(if $(BR2_PACKAGE_LIBNETFILTER_CONNTRACK),libnetfilter_conntrack)
|
2009-12-23 13:30:45 +01:00
|
|
|
SQUID_CONF_ENV = ac_cv_epoll_works=yes ac_cv_func_setresuid=yes \
|
|
|
|
ac_cv_func_va_copy=yes ac_cv_func___va_copy=yes \
|
2011-09-02 16:04:59 +02:00
|
|
|
ac_cv_func_strnstr=no ac_cv_have_squid=yes
|
2012-10-29 11:57:16 +01:00
|
|
|
SQUID_CONF_OPT = --enable-async-io=8 --enable-linux-netfilter \
|
2009-12-23 13:30:45 +01:00
|
|
|
--enable-removal-policies="lru,heap" \
|
2010-11-08 17:40:35 +01:00
|
|
|
--with-filedescriptors=1024 --disable-ident-lookups \
|
2012-10-30 08:21:21 +01:00
|
|
|
--with-krb5-config=no \
|
2012-10-29 11:57:16 +01:00
|
|
|
--enable-auth-basic="fake getpwnam" \
|
|
|
|
--enable-auth-digest="file" \
|
|
|
|
--enable-auth-negotiate="wrapper" \
|
|
|
|
--enable-auth-ntlm="fake" \
|
|
|
|
--disable-strict-error-checking \
|
2010-11-08 17:40:35 +01:00
|
|
|
--enable-external-acl-helpers="ip_user"
|
|
|
|
|
2012-10-29 11:57:16 +01:00
|
|
|
# On uClibc librt needs libpthread
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS)$(BR2_TOOLCHAIN_BUILDROOT)$(BR2_TOOLCHAIN_EXTERNAL_UCLIBC)$(BR2_TOOLCHAIN_CTNG_uClibc),yy)
|
|
|
|
SQUID_CONF_ENV += ac_cv_search_shm_open="-lrt -lpthread"
|
|
|
|
endif
|
|
|
|
|
2009-12-23 13:30:45 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
SQUID_CONF_OPT += --enable-ssl
|
|
|
|
SQUID_DEPENDENCIES += openssl
|
|
|
|
endif
|
|
|
|
|
2010-09-01 23:08:46 +02:00
|
|
|
define SQUID_CLEANUP_TARGET
|
2009-12-23 13:30:45 +01:00
|
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/bin/, \
|
|
|
|
RunCache RunAccel)
|
|
|
|
rm -f $(addprefix $(TARGET_DIR)/etc/, \
|
|
|
|
cachemgr.conf mime.conf.default squid.conf.default)
|
2010-09-01 23:08:46 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
SQUID_POST_INSTALL_TARGET_HOOKS += SQUID_CLEANUP_TARGET
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|