mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
- Pull from attic
- Add latest_link PR: ports/125337 Submitted by: Thomas-Martin Seck <tmseck@web.de> (maintainer)
This commit is contained in:
parent
ec1755ca55
commit
015553f699
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=216803
@ -1266,6 +1266,7 @@
|
||||
SUBDIR += spreadlogd
|
||||
SUBDIR += sqstat
|
||||
SUBDIR += squid
|
||||
SUBDIR += squid26
|
||||
SUBDIR += squid30
|
||||
SUBDIR += squid_radius_auth
|
||||
SUBDIR += squidclients
|
||||
|
461
www/squid26/Makefile
Normal file
461
www/squid26/Makefile
Normal file
@ -0,0 +1,461 @@
|
||||
# New ports collection makefile for: squid26
|
||||
# Date created: 2006-06-01
|
||||
# Whom: Thomas-Martin Seck <tmseck@netcologne.de>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Tunables not (yet) configurable via 'make config':
|
||||
# SQUID_{U,G}ID
|
||||
# Which user/group Squid should run as (default: squid/squid).
|
||||
# The user and group will be created if they do not already exist using
|
||||
# a uid:gid of 100:100.
|
||||
# NOTE: older versions of Squid defaulted to nobody/nogroup.
|
||||
# If you wish to run Squid as "nobody" (which is not recommended), please
|
||||
# define SQUID_UID=nobody and SQUID_GID=nogroup in your make environment
|
||||
# before you start the update or installation of this port.
|
||||
#
|
||||
# SQUID_LANGUAGES
|
||||
# A list of languages for which error page files should be installed
|
||||
# (default: all)
|
||||
#
|
||||
# E.g. use `make SQUID_LANGUAGES="English French"' if you want to
|
||||
# install the files for these languages only.
|
||||
# Use `make -VSQUID_LANGUAGES' or scroll down to this variable's
|
||||
# definition to see which values are valid.
|
||||
#
|
||||
# SQUID_DEFAULT_LANG
|
||||
# If you define SQUID_LANGUAGES, select which language should be the default
|
||||
# one (this variable defaults to English). This setting can be overwritten
|
||||
# with squid.conf's error_directory directive.
|
||||
#
|
||||
# SQUID_CONFIGURE_ARGS
|
||||
# Additional configuration options.
|
||||
#
|
||||
# To enable them, use e.g
|
||||
# `make SQUID_CONFIGURE_ARGS="--enable-dlmalloc --enable-truncate" install'
|
||||
#
|
||||
# The list below may be incomplete, please see the configure script
|
||||
# in the Squid source distribution for the complete list of additional
|
||||
# options.
|
||||
# Note that you probably do not need to worry about these options in most
|
||||
# cases, they are included in case you want to experiment with them.
|
||||
#
|
||||
# --enable-dlmalloc
|
||||
# Compile and use the malloc package from Doug Lea
|
||||
# --enable-gnuregex
|
||||
# Compile and use the supplied GNUregex routines instead of BSD regex
|
||||
# (not recommended).
|
||||
# --enable-xmalloc-statistics
|
||||
# Show malloc statistics in status page
|
||||
# --enable-cachemgr-hostname=some.hostname
|
||||
# Set an explicit hostname in cachemgr.cgi
|
||||
# --enable-truncate
|
||||
# Use truncate() rather than unlink()
|
||||
# --disable-unlinkd
|
||||
# Do not use "unlinkd"
|
||||
# --with-aufs-threads=N_THREADS
|
||||
# Tune the number of worker threads for the aufs object
|
||||
# --with-coss-membuf-size
|
||||
# COSS membuf size (default: 1048576 bytes)
|
||||
# --with-maxfd=N
|
||||
# Override the maximum number of filedescriptors. Useful if you
|
||||
# build as another user who is not privileged to use the amount
|
||||
# of filedescriptors the resulting binary is expected to support.
|
||||
# --enable-ntlm-fail-open
|
||||
# Enable NTLM fail open, where a helper that fails one of the
|
||||
# Authentication steps can allow Squid to still authenticate the user
|
||||
# --enable-x-accelerator-vary
|
||||
# Enable support for the X-Accelerator-Vary HTTP header. Can be used
|
||||
# to indicate variance within an accelerator setup. Typically used
|
||||
# together with other code that adds custom HTTP headers to the
|
||||
# requests.
|
||||
# --enable-forward-log
|
||||
# Enable experimental forward_log directive.
|
||||
# --enable-multicast-miss
|
||||
# Enable experimental multicast notification of cachemisses.
|
||||
|
||||
PORTNAME= squid
|
||||
PORTVERSION= 2.6.21
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= ftp://ftp.squid-cache.org/pub/%SUBDIR%/ \
|
||||
ftp://mirrors.24-7-solutions.net/pub/squid/%SUBDIR%/ \
|
||||
ftp://ftp.belnet.be/packages/squid/pub/%SUBDIR%/ \
|
||||
ftp://ftp.nl.uu.net/pub/unix/www/squid/%SUBDIR%/ \
|
||||
ftp://ftp.mirrorservice.org/sites/ftp.squid-cache.org/pub/%SUBDIR%/ \
|
||||
ftp://ftp.ntua.gr/pub/www/Squid/%SUBDIR%/ \
|
||||
ftp://ftp.ccs.neu.edu/pub/mirrors/squid.nlanr.net/pub/%SUBDIR%/ \
|
||||
${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/www/squid/&,} \
|
||||
http://www.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www3.us.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www1.at.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www2.nl.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www1.ru.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www1.uk.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www1.jp.squid-cache.org/Versions/v2/2.6/ \
|
||||
http://www2.tw.squid-cache.org/Versions/v2/2.6/
|
||||
MASTER_SITE_SUBDIR= squid-2/STABLE
|
||||
DISTNAME= squid-2.6.STABLE21
|
||||
DIST_SUBDIR= squid2.6
|
||||
|
||||
PATCH_SITES= http://www.squid-cache.org/%SUBDIR%/ \
|
||||
http://www3.us.squid-cache.org/%SUBDIR%/ \
|
||||
http://www1.at.squid-cache.org/%SUBDIR%/ \
|
||||
http://www2.nl.squid-cache.org/%SUBDIR%/ \
|
||||
http://www1.ru.squid-cache.org/%SUBDIR%/ \
|
||||
http://www1.uk.squid-cache.org/%SUBDIR%/ \
|
||||
http://www1.jp.squid-cache.org/%SUBDIR%/ \
|
||||
http://www2.tw.squid-cache.org/%SUBDIR%/
|
||||
PATCH_SITE_SUBDIR= Versions/v2/2.6/changesets
|
||||
PATCHFILES=
|
||||
PATCH_DIST_STRIP= -p1
|
||||
|
||||
MAINTAINER= tmseck@web.de
|
||||
COMMENT= HTTP Caching Proxy
|
||||
|
||||
LATEST_LINK= squd26
|
||||
|
||||
CONFLICTS= squid-2.[^6]* squid-3.* cacheboy-[0-9]*
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BZIP2= yes
|
||||
USE_PERL5= yes
|
||||
USE_RC_SUBR= squid
|
||||
|
||||
SQUID_UID?= squid
|
||||
SQUID_GID?= squid
|
||||
|
||||
MAN8= cachemgr.cgi.8 squid.8
|
||||
docs= QUICKSTART README RELEASENOTES.html doc/debug-sections.txt
|
||||
PORTDOCS= ${docs:T}
|
||||
PORTEXAMPLES= passwd.sql
|
||||
SUB_FILES+= pkg-deinstall pkg-install pkg-message
|
||||
SUB_LIST+= SQUID_UID=${SQUID_UID} SQUID_GID=${SQUID_GID}
|
||||
|
||||
OPTIONS= SQUID_LDAP_AUTH "Install LDAP authentication helpers" off \
|
||||
SQUID_SASL_AUTH "Install SASL authentication helpers" off \
|
||||
SQUID_DELAY_POOLS "Enable delay pools" off \
|
||||
SQUID_SNMP "Enable SNMP support" off \
|
||||
SQUID_CARP "Enable CARP support" on \
|
||||
SQUID_SSL "Enable SSL support for reverse proxies" off \
|
||||
SQUID_PINGER "Install the icmp helper" off \
|
||||
SQUID_DNS_HELPER "Use the old 'dnsserver' helper" off \
|
||||
SQUID_HTCP "Enable HTCP support" off \
|
||||
SQUID_VIA_DB "Enable forward/via database" off \
|
||||
SQUID_CACHE_DIGESTS "Enable cache digests" off \
|
||||
SQUID_WCCP "Enable Web Cache Coordination Prot. v1" on \
|
||||
SQUID_WCCPV2 "Enable Web Cache Coordination Prot. v2" off \
|
||||
SQUID_STRICT_HTTP "Be strictly HTTP compliant" off \
|
||||
SQUID_IDENT "Enable ident (RFC 931) lookups" on \
|
||||
SQUID_REFERER_LOG "Enable Referer-header logging" off \
|
||||
SQUID_USERAGENT_LOG "Enable User-Agent-header logging" off \
|
||||
SQUID_ARP_ACL "Enable ACLs based on ethernet address" off \
|
||||
SQUID_PF "Enable transparent proxying with PF" off \
|
||||
SQUID_IPFILTER "Enable transp. proxying with IPFilter" off \
|
||||
SQUID_FOLLOW_XFF "Follow X-Forwarded-For headers" off \
|
||||
SQUID_ICAP "Enable ICAP client functionality" off \
|
||||
SQUID_AUFS "Enable the aufs storage scheme" off \
|
||||
SQUID_COSS "Enable the COSS storage scheme" off \
|
||||
SQUID_KQUEUE "Use kqueue(2) instead of poll(2)" on \
|
||||
SQUID_LARGEFILE "Support log and cache files >2GB" off \
|
||||
SQUID_STACKTRACES "Create backtraces on fatal errors" off
|
||||
|
||||
etc_files= squid/cachemgr.conf.default \
|
||||
squid/mib.txt squid/mime.conf.default \
|
||||
squid/msntauth.conf.default squid/squid.conf.default
|
||||
|
||||
icon_files= anthony-binhex.gif anthony-bomb.gif anthony-box.gif \
|
||||
anthony-box2.gif anthony-c.gif anthony-compressed.gif \
|
||||
anthony-dir.gif anthony-dirup.gif anthony-dvi.gif \
|
||||
anthony-f.gif anthony-image.gif anthony-image2.gif \
|
||||
anthony-layout.gif anthony-link.gif anthony-movie.gif \
|
||||
anthony-pdf.gif anthony-portal.gif anthony-ps.gif \
|
||||
anthony-quill.gif anthony-script.gif anthony-sound.gif \
|
||||
anthony-tar.gif anthony-tex.gif anthony-text.gif \
|
||||
anthony-unknown.gif anthony-xbm.gif anthony-xpm.gif
|
||||
|
||||
error_files= ERR_ACCESS_DENIED ERR_CACHE_ACCESS_DENIED \
|
||||
ERR_CACHE_MGR_ACCESS_DENIED ERR_CANNOT_FORWARD \
|
||||
ERR_CONNECT_FAIL ERR_DNS_FAIL ERR_FORWARDING_DENIED \
|
||||
ERR_FTP_DISABLED ERR_FTP_FAILURE ERR_FTP_FORBIDDEN \
|
||||
ERR_FTP_NOT_FOUND ERR_FTP_PUT_CREATED \
|
||||
ERR_FTP_PUT_ERROR ERR_FTP_PUT_MODIFIED ERR_FTP_UNAVAILABLE \
|
||||
ERR_INVALID_REQ ERR_INVALID_RESP ERR_INVALID_URL \
|
||||
ERR_LIFETIME_EXP ERR_NO_RELAY ERR_ONLY_IF_CACHED_MISS \
|
||||
ERR_READ_ERROR ERR_READ_TIMEOUT ERR_SHUTTING_DOWN \
|
||||
ERR_SOCKET_FAILURE ERR_TOO_BIG ERR_UNSUP_REQ \
|
||||
ERR_URN_RESOLVE ERR_WRITE_ERROR ERR_ZERO_SIZE_OBJECT
|
||||
|
||||
libexec= cachemgr.cgi digest_pw_auth diskd-daemon \
|
||||
ip_user_check \
|
||||
msnt_auth ncsa_auth ntlm_auth \
|
||||
pam_auth smb_auth smb_auth.sh squid_db_auth squid_session \
|
||||
squid_unix_group wbinfo_group.pl
|
||||
.if !defined(SQUID_CONFIGURE_ARGS) || ${SQUID_CONFIGURE_ARGS:M*--disable-unlinkd*} == ""
|
||||
libexec+= unlinkd
|
||||
.endif
|
||||
|
||||
sbin= RunCache squidclient squid
|
||||
|
||||
CONFIGURE_ARGS= --bindir=${PREFIX}/sbin \
|
||||
--sbindir=${PREFIX}/sbin \
|
||||
--datadir=${PREFIX}/etc/squid \
|
||||
--libexecdir=${PREFIX}/libexec/squid \
|
||||
--localstatedir=${PREFIX}/squid \
|
||||
--sysconfdir=${PREFIX}/etc/squid \
|
||||
--enable-removal-policies="lru heap" \
|
||||
--disable-linux-netfilter \
|
||||
--disable-linux-tproxy \
|
||||
--disable-epoll
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# Authentication methods and modules:
|
||||
|
||||
basic_auth= DB NCSA PAM MSNT SMB
|
||||
digest_auth= password
|
||||
external_acl= ip_user session unix_group wbinfo_group
|
||||
MAN8+= ncsa_auth.8 pam_auth.8 squid_db_auth.8 squid_session.8 \
|
||||
squid_unix_group.8
|
||||
.if defined(WITH_SQUID_LDAP_AUTH)
|
||||
USE_OPENLDAP= yes
|
||||
CFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
MAN8+= squid_ldap_auth.8 squid_ldap_group.8
|
||||
basic_auth+= LDAP
|
||||
digest_auth+= ldap
|
||||
external_acl+= ldap_group
|
||||
libexec+= digest_ldap_auth squid_ldap_auth squid_ldap_group
|
||||
.endif
|
||||
.if defined(WITH_SQUID_SASL_AUTH)
|
||||
LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
|
||||
CFLAGS+= -I${LOCALBASE}/include
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
basic_auth+= SASL
|
||||
libexec+= sasl_auth
|
||||
.endif
|
||||
.if !defined(NO_NIS) && !defined(WITHOUT_NIS)
|
||||
basic_auth+= YP
|
||||
libexec+= yp_auth
|
||||
.endif
|
||||
CONFIGURE_ARGS+= --enable-auth="basic digest negotiate ntlm" \
|
||||
--enable-basic-auth-helpers="${basic_auth}" \
|
||||
--enable-digest-auth-helpers="${digest_auth}" \
|
||||
--enable-external-acl-helpers="${external_acl}" \
|
||||
--enable-ntlm-auth-helpers="SMB"
|
||||
.if !defined(NO_KERBEROS) && !defined(WITHOUT_KERBEROS)
|
||||
# XXX This currently only works with heimdal from the base system,
|
||||
# see files/patch-helpers_negotiate_auth-squid_kerb_auth_*
|
||||
CONFIGURE_ARGS+= --enable-negotiate-auth-helpers="squid_kerb_auth"
|
||||
libexec+= squid_kerb_auth
|
||||
.endif
|
||||
# XXX: this is a bit misleading: this patch fixes compilation of
|
||||
# squid_kerb_auth on 8-CURRENT after the import of Heimdal 1.1 and
|
||||
# it needs to be applied before the ICAP bootstrap patch in any case
|
||||
# because the ICAP patch relies on changes to the configure script
|
||||
# that are made by this patch. Because patches are applied in alphabe-
|
||||
# tical order, sneak it in front of the ICAP bootstrap patch by (ab)using
|
||||
# EXTRA_PATCHES: (Note: this patch is a no-op in the NO_KERBEROS case and
|
||||
# should not break compilation in this case.)
|
||||
EXTRA_PATCHES+= ${PATCHDIR}/fix-kerberos.patch
|
||||
|
||||
# Storage schemes:
|
||||
|
||||
storage_schemes= ufs diskd null
|
||||
.if defined(WITH_SQUID_AUFS)
|
||||
storage_schemes+= aufs
|
||||
.if ${OSVERSION}>=501000
|
||||
# Only document libmap.conf where it is available:
|
||||
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src-cf.data.pre.aufs
|
||||
.endif
|
||||
# Nil aufs threads is default, set any other value via SQUID_CONFIGURE_ARGS
|
||||
CONFIGURE_ARGS+= --with-pthreads
|
||||
CFLAGS+= ${PTHREAD_CFLAGS}
|
||||
.endif
|
||||
.if defined(WITH_SQUID_COSS)
|
||||
storage_schemes+= coss
|
||||
.if !defined(WITH_SQUID_AUFS)
|
||||
# use Posix AIO instead of aufs' AIO; note that you then need the kernel to
|
||||
# supply AIO support, either by loading the aio(4) module (n/a on 4.x) or by
|
||||
# adding the option VFS_AIO to your kernel configuration if you want to
|
||||
# actually use COSS storage:
|
||||
CONFIGURE_ARGS+= --enable-coss-aio-ops
|
||||
.endif
|
||||
sbin+= cossdump
|
||||
.endif
|
||||
CONFIGURE_ARGS+= --enable-storeio="${storage_schemes}"
|
||||
|
||||
# Other options set via 'make config':
|
||||
|
||||
.if defined(WITH_SQUID_DELAY_POOLS)
|
||||
CONFIGURE_ARGS+= --enable-delay-pools
|
||||
.endif
|
||||
.if defined(WITH_SQUID_SNMP)
|
||||
CONFIGURE_ARGS+= --enable-snmp
|
||||
.endif
|
||||
.if defined(WITHOUT_SQUID_CARP)
|
||||
CONFIGURE_ARGS+= --disable-carp
|
||||
.endif
|
||||
.if defined(WITH_SQUID_SSL)
|
||||
# we need to .include bsd.openssl.mk manually here.because USE_OPENSSL only
|
||||
# works when it is defined before bsd.port{.pre}.mk is .included.
|
||||
# This makes it currently impossible to combine this macro with OPTIONS to
|
||||
# conditionally include OpenSSL support.
|
||||
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
|
||||
CONFIGURE_ARGS+= --enable-ssl \
|
||||
--with-openssl="${OPENSSLBASE}"
|
||||
CFLAGS+= -I${OPENSSLINC}
|
||||
LDFLAGS+= -L${OPENSSLLIB}
|
||||
.endif
|
||||
.if defined(WITH_SQUID_PINGER)
|
||||
CONFIGURE_ARGS+= --enable-icmp
|
||||
libexec+= pinger
|
||||
.endif
|
||||
.if defined(WITH_SQUID_DNS_HELPER)
|
||||
CONFIGURE_ARGS+= --disable-internal-dns
|
||||
libexec+= dnsserver
|
||||
.endif
|
||||
.if defined(WITH_SQUID_HTCP)
|
||||
CONFIGURE_ARGS+= --enable-htcp
|
||||
.endif
|
||||
.if defined(WITH_SQUID_VIA_DB)
|
||||
CONFIGURE_ARGS+= --enable-forw-via-db
|
||||
.endif
|
||||
.if defined(WITH_SQUID_CACHE_DIGESTS)
|
||||
CONFIGURE_ARGS+= --enable-cache-digests
|
||||
.endif
|
||||
.if defined(WITHOUT_SQUID_WCCP)
|
||||
CONFIGURE_ARGS+= --disable-wccp
|
||||
.endif
|
||||
.if defined(WITH_SQUID_WCCPV2)
|
||||
CONFIGURE_ARGS+= --enable-wccpv2
|
||||
.endif
|
||||
.if defined(WITH_SQUID_STRICT_HTTP)
|
||||
CONFIGURE_ARGS+= --disable-http-violations
|
||||
.endif
|
||||
.if defined(WITHOUT_SQUID_IDENT)
|
||||
CONFIGURE_ARGS+= --disable-ident-lookups
|
||||
.endif
|
||||
.if defined(WITH_SQUID_REFERER_LOG)
|
||||
CONFIGURE_ARGS+= --enable-referer-log
|
||||
.endif
|
||||
.if defined(WITH_SQUID_USERAGENT_LOG)
|
||||
CONFIGURE_ARGS+= --enable-useragent-log
|
||||
.endif
|
||||
.if defined(WITH_SQUID_ARP_ACL)
|
||||
CONFIGURE_ARGS+= --enable-arp-acl
|
||||
.endif
|
||||
.if defined(WITH_SQUID_PF)
|
||||
CONFIGURE_ARGS+= --enable-pf-transparent
|
||||
.if ${OSVERSION} < 502106
|
||||
IGNORE= pf available only in FreeBSD 5.3 and newer
|
||||
.endif
|
||||
.endif
|
||||
# IPFilter-headers are not installed on FreeBSD 4 since 4.7-RELEASE,
|
||||
# they were not installed on FreeBSD 5 from 2002-03-26 (OSVERSION > 500032) to
|
||||
# 2003-06-27 (OSVERSION < 501101).
|
||||
#
|
||||
# Please see PR misc/44148 and the CVS log of src/include/Makefile for further
|
||||
# information.
|
||||
.if defined(WITH_SQUID_IPFILTER)
|
||||
.if (${OSVERSION} > 500032 && ${OSVERSION} < 501101)
|
||||
IGNORE= the IPFilter headers are not part of the base system
|
||||
.else
|
||||
CONFIGURE_ARGS+= --enable-ipf-transparent
|
||||
.endif
|
||||
.endif
|
||||
.if defined(WITH_SQUID_FOLLOW_XFF)
|
||||
CONFIGURE_ARGS+= --enable-follow-x-forwarded-for
|
||||
.endif
|
||||
.if defined(WITH_SQUID_ICAP)
|
||||
EXTRA_PATCHES+= ${PATCHDIR}/icap-2.6-bootstrap.patch \
|
||||
${PATCHDIR}/icap-2.6-core.patch
|
||||
CONFIGURE_ARGS+= --enable-icap-support
|
||||
error_files+= ERR_ICAP_FAILURE
|
||||
.endif
|
||||
.if defined(WITHOUT_SQUID_KQUEUE)
|
||||
CONFIGURE_ARGS+= --disable-kqueue
|
||||
.endif
|
||||
.if defined(WITH_SQUID_LARGEFILE)
|
||||
CONFIGURE_ARGS+= --with-large-files --enable-large-cache-files
|
||||
.endif
|
||||
.if defined(WITH_SQUID_STACKTRACES)
|
||||
CONFIGURE_ARGS+= --enable-stacktraces
|
||||
CFLAGS+= -g
|
||||
STRIP=
|
||||
.endif
|
||||
|
||||
# Languages:
|
||||
#
|
||||
# If you do not define SQUID_LANGUAGES yourself, all available language files
|
||||
# will be installed; the default language will be English.
|
||||
|
||||
SQUID_LANGUAGES?= Armenian Azerbaijani Bulgarian Catalan Czech Danish \
|
||||
Dutch English Estonian Finnish French German Greek \
|
||||
Hebrew Hungarian Italian Japanese Korean Lithuanian \
|
||||
Polish Portuguese Romanian Russian-1251 Russian-koi8-r \
|
||||
Serbian Simplify_Chinese Slovak Spanish Swedish \
|
||||
Traditional_Chinese Turkish Ukrainian-1251 \
|
||||
Ukrainian-koi8-u Ukrainian-utf8
|
||||
SQUID_DEFAULT_LANG?= English
|
||||
CONFIGURE_ARGS+= --enable-err-languages="${SQUID_LANGUAGES}" \
|
||||
--enable-default-err-language=${SQUID_DEFAULT_LANG}
|
||||
|
||||
# Finally, add additional user specified configuration options:
|
||||
CONFIGURE_ARGS+= ${SQUID_CONFIGURE_ARGS}
|
||||
|
||||
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" \
|
||||
CPPFLAGS="${CPPFLAGS}"\
|
||||
LDFLAGS="${LDFLAGS}" \
|
||||
GREP="${GREP}"
|
||||
|
||||
PLIST_DIRS= etc/squid/icons libexec/squid
|
||||
PLIST_FILES= ${etc_files:S,^,etc/,} ${icon_files:S,^,etc/squid/icons/,} \
|
||||
${libexec:S,^,libexec/squid/,} ${sbin:S,^,sbin/,}
|
||||
|
||||
.for d in ${SQUID_LANGUAGES}
|
||||
PLIST_DIRS+= etc/squid/errors/${d}
|
||||
PLIST_FILES+= ${error_files:S,^,etc/squid/errors/${d}/,}
|
||||
.endfor
|
||||
PLIST_DIRS+= etc/squid/errors etc/squid squid/logs squid/cache squid
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
|
||||
${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e 's|%%SQUID_UID%%|${SQUID_UID}|g' \
|
||||
-e 's|%%SQUID_GID%%|${SQUID_GID}|g' \
|
||||
-e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/cf.data.pre
|
||||
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
||||
${WRKSRC}/helpers/basic_auth/SMB/Makefile.in \
|
||||
${WRKSRC}/helpers/basic_auth/SMB/smb_auth.sh
|
||||
|
||||
pre-install:
|
||||
# Prevent installation of .orig files by deleting them.
|
||||
@${FIND} ${WRKSRC} -name '*.bak' -delete
|
||||
@${FIND} ${WRKSRC} -name '*.orig' -delete
|
||||
|
||||
pre-su-install:
|
||||
@${SETENV} ${SCRIPTS_ENV} PKG_PREFIX=${PREFIX} \
|
||||
${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/helpers/basic_auth/DB/passwd.sql ${EXAMPLESDIR}
|
||||
.endif
|
||||
.if defined(WITH_SQUID_PINGER)
|
||||
${CHMOD} 4510 ${PREFIX}/libexec/squid/pinger; \
|
||||
${CHGRP} ${SQUID_GID} ${PREFIX}/libexec/squid/pinger
|
||||
.endif
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
cd ${WRKSRC} && ${INSTALL_DATA} ${docs} ${DOCSDIR}
|
||||
.endif
|
||||
@${SETENV} PKG_PREFIX=${PREFIX} \
|
||||
${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
||||
|
||||
@${ECHO_CMD} "===> post-installation information for ${PKGNAME}:"
|
||||
@${ECHO_CMD} ""
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
@${ECHO_CMD} ""
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
www/squid26/distinfo
Normal file
3
www/squid26/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (squid2.6/squid-2.6.STABLE21.tar.bz2) = 3a24e37ee2bc0c4721973ca6354d4aa4
|
||||
SHA256 (squid2.6/squid-2.6.STABLE21.tar.bz2) = d25dd7af33c31f0ecfe67aa92676678b0746e0226dc6eb6d9d37690816761801
|
||||
SIZE (squid2.6/squid-2.6.STABLE21.tar.bz2) = 1294517
|
20
www/squid26/files/extra-patch-src-cf.data.pre.aufs
Normal file
20
www/squid26/files/extra-patch-src-cf.data.pre.aufs
Normal file
@ -0,0 +1,20 @@
|
||||
--- src/cf.data.pre.orig Wed Nov 1 15:12:02 2006
|
||||
+++ src/cf.data.pre Wed Nov 1 15:12:17 2006
|
||||
@@ -1097,6 +1100,17 @@
|
||||
|
||||
see argument descriptions under ufs above
|
||||
|
||||
+ Note:
|
||||
+ By default, FreeBSD uses the pthread(3) M:N threading library.
|
||||
+ You can, however, map the thread library to the 1:1 libthr(3)
|
||||
+ implementation by inserting the following lines into
|
||||
+ /etc/libmap.conf and see whether this performs better on your
|
||||
+ system:
|
||||
+
|
||||
+ [%%PREFIX%%/sbin/squid]
|
||||
+ libpthread.so.1 libthr.so.1
|
||||
+ libpthread.so.2 libthr.so.2
|
||||
+
|
||||
The diskd store type:
|
||||
|
||||
"diskd" uses the same storage format as "ufs", utilizing a
|
577
www/squid26/files/fix-kerberos.patch
Normal file
577
www/squid26/files/fix-kerberos.patch
Normal file
@ -0,0 +1,577 @@
|
||||
This file contains various patches that in general try to enable the
|
||||
compilation of the squid_kerb_auth authentication helper program on
|
||||
all versions of FreeBSD that are currently supported by the FreeBSD
|
||||
ports framework where Heimdal is part of the base system.
|
||||
|
||||
In order to have it applied before the icap26-boostrap.patch it is
|
||||
not merged into patch-configure. See the port's Makefile for further
|
||||
explanation.
|
||||
|
||||
--- configure 2008-04-25 21:49:52.000000000 +0200
|
||||
+++ configure 2008-05-26 15:19:54.000000000 +0200
|
||||
@@ -753,10 +753,13 @@
|
||||
NTLM_AUTH_HELPERS
|
||||
DIGEST_AUTH_HELPERS
|
||||
NEGOTIATE_AUTH_HELPERS
|
||||
-EXTERNAL_ACL_HELPERS
|
||||
+KRB5CONFIG
|
||||
+KERBLIBS
|
||||
+KERBINC
|
||||
CPP
|
||||
GREP
|
||||
EGREP
|
||||
+EXTERNAL_ACL_HELPERS
|
||||
LIBSASL
|
||||
ENABLE_UNLINKD_TRUE
|
||||
ENABLE_UNLINKD_FALSE
|
||||
@@ -5591,50 +5594,59 @@
|
||||
fi
|
||||
|
||||
|
||||
-# Check whether --enable-ntlm-fail-open was given.
|
||||
-if test "${enable_ntlm_fail_open+set}" = set; then
|
||||
- enableval=$enable_ntlm_fail_open; if test "$enableval" = "yes" ; then
|
||||
-
|
||||
-cat >>confdefs.h <<\_ACEOF
|
||||
-#define NTLM_FAIL_OPEN 1
|
||||
-_ACEOF
|
||||
|
||||
+if `echo "$NEGOTIATE_AUTH_HELPERS" | grep -q squid_kerb_auth`; then
|
||||
+ # Extract the first word of "krb5-config", so it can be a program name with args.
|
||||
+set dummy krb5-config; ac_word=$2
|
||||
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
|
||||
+if test "${ac_cv_path_KRB5CONFIG+set}" = set; then
|
||||
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
+else
|
||||
+ case $KRB5CONFIG in
|
||||
+ [\\/]* | ?:[\\/]*)
|
||||
+ ac_cv_path_KRB5CONFIG="$KRB5CONFIG" # Let the user override the test with a path.
|
||||
+ ;;
|
||||
+ *)
|
||||
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
+for as_dir in $PATH
|
||||
+do
|
||||
+ IFS=$as_save_IFS
|
||||
+ test -z "$as_dir" && as_dir=.
|
||||
+ for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
||||
+ ac_cv_path_KRB5CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
||||
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
+ break 2
|
||||
fi
|
||||
+done
|
||||
+done
|
||||
+IFS=$as_save_IFS
|
||||
|
||||
+ test -z "$ac_cv_path_KRB5CONFIG" && ac_cv_path_KRB5CONFIG="false"
|
||||
+ ;;
|
||||
+esac
|
||||
fi
|
||||
-
|
||||
-
|
||||
-EXTERNAL_ACL_HELPERS=
|
||||
-# Check whether --enable-external-acl-helpers was given.
|
||||
-if test "${enable_external_acl_helpers+set}" = set; then
|
||||
- enableval=$enable_external_acl_helpers; case "$enableval" in
|
||||
- yes)
|
||||
- echo "ERROR: --enable-external-acl-helpers requires an argument"
|
||||
- exit 1
|
||||
- ;;
|
||||
- no)
|
||||
- ;;
|
||||
- *)
|
||||
- EXTERNAL_ACL_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
|
||||
- esac
|
||||
-
|
||||
+KRB5CONFIG=$ac_cv_path_KRB5CONFIG
|
||||
+if test -n "$KRB5CONFIG"; then
|
||||
+ { echo "$as_me:$LINENO: result: $KRB5CONFIG" >&5
|
||||
+echo "${ECHO_T}$KRB5CONFIG" >&6; }
|
||||
+else
|
||||
+ { echo "$as_me:$LINENO: result: no" >&5
|
||||
+echo "${ECHO_T}no" >&6; }
|
||||
fi
|
||||
|
||||
-if test -n "$EXTERNAL_ACL_HELPERS"; then
|
||||
- for helper in $EXTERNAL_ACL_HELPERS; do
|
||||
- if test -f $srcdir/helpers/external_acl/$helper/Makefile.in; then
|
||||
- :
|
||||
- else
|
||||
- echo "ERROR: external acl helper $helper does not exists"
|
||||
- exit 1
|
||||
- fi
|
||||
- done
|
||||
- echo "External acl helpers built: $EXTERNAL_ACL_HELPERS"
|
||||
-fi
|
||||
|
||||
+ if test -z "$KRB5CONFIG"; then
|
||||
+ { { echo "$as_me:$LINENO: error: sorry" >&5
|
||||
+echo "$as_me: error: sorry" >&2;}
|
||||
+ { (exit need krb5-config to determine compilation settings); exit need krb5-config to determine compilation settings; }; }
|
||||
+ else
|
||||
+ KERBLIBS=`$KRB5CONFIG --libs gssapi`
|
||||
+ KERBINC=`$KRB5CONFIG --cflags`
|
||||
|
||||
|
||||
-if test "$require_sasl" = "yes"; then
|
||||
+ fi
|
||||
|
||||
ac_ext=c
|
||||
ac_cpp='$CPP $CPPFLAGS'
|
||||
@@ -6273,6 +6285,349 @@
|
||||
|
||||
|
||||
|
||||
+for ac_header in gssapi/gssapi.h
|
||||
+do
|
||||
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
||||
+ { echo "$as_me:$LINENO: checking for $ac_header" >&5
|
||||
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
|
||||
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
||||
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
+fi
|
||||
+ac_res=`eval echo '${'$as_ac_Header'}'`
|
||||
+ { echo "$as_me:$LINENO: result: $ac_res" >&5
|
||||
+echo "${ECHO_T}$ac_res" >&6; }
|
||||
+else
|
||||
+ # Is the header compilable?
|
||||
+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
|
||||
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
|
||||
+cat >conftest.$ac_ext <<_ACEOF
|
||||
+/* confdefs.h. */
|
||||
+_ACEOF
|
||||
+cat confdefs.h >>conftest.$ac_ext
|
||||
+cat >>conftest.$ac_ext <<_ACEOF
|
||||
+/* end confdefs.h. */
|
||||
+$ac_includes_default
|
||||
+#include <$ac_header>
|
||||
+_ACEOF
|
||||
+rm -f conftest.$ac_objext
|
||||
+if { (ac_try="$ac_compile"
|
||||
+case "(($ac_try" in
|
||||
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
||||
+ *) ac_try_echo=$ac_try;;
|
||||
+esac
|
||||
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
||||
+ (eval "$ac_compile") 2>conftest.er1
|
||||
+ ac_status=$?
|
||||
+ grep -v '^ *+' conftest.er1 >conftest.err
|
||||
+ rm -f conftest.er1
|
||||
+ cat conftest.err >&5
|
||||
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
+ (exit $ac_status); } && {
|
||||
+ test -z "$ac_c_werror_flag" ||
|
||||
+ test ! -s conftest.err
|
||||
+ } && test -s conftest.$ac_objext; then
|
||||
+ ac_header_compiler=yes
|
||||
+else
|
||||
+ echo "$as_me: failed program was:" >&5
|
||||
+sed 's/^/| /' conftest.$ac_ext >&5
|
||||
+
|
||||
+ ac_header_compiler=no
|
||||
+fi
|
||||
+
|
||||
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
|
||||
+echo "${ECHO_T}$ac_header_compiler" >&6; }
|
||||
+
|
||||
+# Is the header present?
|
||||
+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
|
||||
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
|
||||
+cat >conftest.$ac_ext <<_ACEOF
|
||||
+/* confdefs.h. */
|
||||
+_ACEOF
|
||||
+cat confdefs.h >>conftest.$ac_ext
|
||||
+cat >>conftest.$ac_ext <<_ACEOF
|
||||
+/* end confdefs.h. */
|
||||
+#include <$ac_header>
|
||||
+_ACEOF
|
||||
+if { (ac_try="$ac_cpp conftest.$ac_ext"
|
||||
+case "(($ac_try" in
|
||||
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
||||
+ *) ac_try_echo=$ac_try;;
|
||||
+esac
|
||||
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
||||
+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
|
||||
+ ac_status=$?
|
||||
+ grep -v '^ *+' conftest.er1 >conftest.err
|
||||
+ rm -f conftest.er1
|
||||
+ cat conftest.err >&5
|
||||
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
+ (exit $ac_status); } >/dev/null && {
|
||||
+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
|
||||
+ test ! -s conftest.err
|
||||
+ }; then
|
||||
+ ac_header_preproc=yes
|
||||
+else
|
||||
+ echo "$as_me: failed program was:" >&5
|
||||
+sed 's/^/| /' conftest.$ac_ext >&5
|
||||
+
|
||||
+ ac_header_preproc=no
|
||||
+fi
|
||||
+
|
||||
+rm -f conftest.err conftest.$ac_ext
|
||||
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
|
||||
+echo "${ECHO_T}$ac_header_preproc" >&6; }
|
||||
+
|
||||
+# So? What about this header?
|
||||
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
|
||||
+ yes:no: )
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
|
||||
+ ac_header_preproc=yes
|
||||
+ ;;
|
||||
+ no:yes:* )
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
|
||||
+ ( cat <<\_ASBOX
|
||||
+## ----------------------------------------------- ##
|
||||
+## Report this to http://www.squid-cache.org/bugs/ ##
|
||||
+## ----------------------------------------------- ##
|
||||
+_ASBOX
|
||||
+ ) | sed "s/^/$as_me: WARNING: /" >&2
|
||||
+ ;;
|
||||
+esac
|
||||
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
|
||||
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
|
||||
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
||||
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
+else
|
||||
+ eval "$as_ac_Header=\$ac_header_preproc"
|
||||
+fi
|
||||
+ac_res=`eval echo '${'$as_ac_Header'}'`
|
||||
+ { echo "$as_me:$LINENO: result: $ac_res" >&5
|
||||
+echo "${ECHO_T}$ac_res" >&6; }
|
||||
+
|
||||
+fi
|
||||
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
||||
+ cat >>confdefs.h <<_ACEOF
|
||||
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
||||
+_ACEOF
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+done
|
||||
+
|
||||
+ if test x"$ac_cv_header_gssapi_gssapi_h" != x"yes"; then
|
||||
+
|
||||
+for ac_header in gssapi.h
|
||||
+do
|
||||
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
||||
+ { echo "$as_me:$LINENO: checking for $ac_header" >&5
|
||||
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
|
||||
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
||||
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
+fi
|
||||
+ac_res=`eval echo '${'$as_ac_Header'}'`
|
||||
+ { echo "$as_me:$LINENO: result: $ac_res" >&5
|
||||
+echo "${ECHO_T}$ac_res" >&6; }
|
||||
+else
|
||||
+ # Is the header compilable?
|
||||
+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
|
||||
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
|
||||
+cat >conftest.$ac_ext <<_ACEOF
|
||||
+/* confdefs.h. */
|
||||
+_ACEOF
|
||||
+cat confdefs.h >>conftest.$ac_ext
|
||||
+cat >>conftest.$ac_ext <<_ACEOF
|
||||
+/* end confdefs.h. */
|
||||
+$ac_includes_default
|
||||
+#include <$ac_header>
|
||||
+_ACEOF
|
||||
+rm -f conftest.$ac_objext
|
||||
+if { (ac_try="$ac_compile"
|
||||
+case "(($ac_try" in
|
||||
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
||||
+ *) ac_try_echo=$ac_try;;
|
||||
+esac
|
||||
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
||||
+ (eval "$ac_compile") 2>conftest.er1
|
||||
+ ac_status=$?
|
||||
+ grep -v '^ *+' conftest.er1 >conftest.err
|
||||
+ rm -f conftest.er1
|
||||
+ cat conftest.err >&5
|
||||
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
+ (exit $ac_status); } && {
|
||||
+ test -z "$ac_c_werror_flag" ||
|
||||
+ test ! -s conftest.err
|
||||
+ } && test -s conftest.$ac_objext; then
|
||||
+ ac_header_compiler=yes
|
||||
+else
|
||||
+ echo "$as_me: failed program was:" >&5
|
||||
+sed 's/^/| /' conftest.$ac_ext >&5
|
||||
+
|
||||
+ ac_header_compiler=no
|
||||
+fi
|
||||
+
|
||||
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
|
||||
+echo "${ECHO_T}$ac_header_compiler" >&6; }
|
||||
+
|
||||
+# Is the header present?
|
||||
+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
|
||||
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
|
||||
+cat >conftest.$ac_ext <<_ACEOF
|
||||
+/* confdefs.h. */
|
||||
+_ACEOF
|
||||
+cat confdefs.h >>conftest.$ac_ext
|
||||
+cat >>conftest.$ac_ext <<_ACEOF
|
||||
+/* end confdefs.h. */
|
||||
+#include <$ac_header>
|
||||
+_ACEOF
|
||||
+if { (ac_try="$ac_cpp conftest.$ac_ext"
|
||||
+case "(($ac_try" in
|
||||
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
||||
+ *) ac_try_echo=$ac_try;;
|
||||
+esac
|
||||
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
||||
+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
|
||||
+ ac_status=$?
|
||||
+ grep -v '^ *+' conftest.er1 >conftest.err
|
||||
+ rm -f conftest.er1
|
||||
+ cat conftest.err >&5
|
||||
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
+ (exit $ac_status); } >/dev/null && {
|
||||
+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
|
||||
+ test ! -s conftest.err
|
||||
+ }; then
|
||||
+ ac_header_preproc=yes
|
||||
+else
|
||||
+ echo "$as_me: failed program was:" >&5
|
||||
+sed 's/^/| /' conftest.$ac_ext >&5
|
||||
+
|
||||
+ ac_header_preproc=no
|
||||
+fi
|
||||
+
|
||||
+rm -f conftest.err conftest.$ac_ext
|
||||
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
|
||||
+echo "${ECHO_T}$ac_header_preproc" >&6; }
|
||||
+
|
||||
+# So? What about this header?
|
||||
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
|
||||
+ yes:no: )
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
|
||||
+ ac_header_preproc=yes
|
||||
+ ;;
|
||||
+ no:yes:* )
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
||||
+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
|
||||
+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
|
||||
+ ( cat <<\_ASBOX
|
||||
+## ----------------------------------------------- ##
|
||||
+## Report this to http://www.squid-cache.org/bugs/ ##
|
||||
+## ----------------------------------------------- ##
|
||||
+_ASBOX
|
||||
+ ) | sed "s/^/$as_me: WARNING: /" >&2
|
||||
+ ;;
|
||||
+esac
|
||||
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
|
||||
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
|
||||
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
||||
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
+else
|
||||
+ eval "$as_ac_Header=\$ac_header_preproc"
|
||||
+fi
|
||||
+ac_res=`eval echo '${'$as_ac_Header'}'`
|
||||
+ { echo "$as_me:$LINENO: result: $ac_res" >&5
|
||||
+echo "${ECHO_T}$ac_res" >&6; }
|
||||
+
|
||||
+fi
|
||||
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
||||
+ cat >>confdefs.h <<_ACEOF
|
||||
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
||||
+_ACEOF
|
||||
+
|
||||
+else
|
||||
+ { { echo "$as_me:$LINENO: error: neither <gssapi/gssapi.h> nor <gssapi.h> found" >&5
|
||||
+echo "$as_me: error: neither <gssapi/gssapi.h> nor <gssapi.h> found" >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+done
|
||||
+
|
||||
+ fi
|
||||
+fi
|
||||
+
|
||||
+# Check whether --enable-ntlm-fail-open was given.
|
||||
+if test "${enable_ntlm_fail_open+set}" = set; then
|
||||
+ enableval=$enable_ntlm_fail_open; if test "$enableval" = "yes" ; then
|
||||
+
|
||||
+cat >>confdefs.h <<\_ACEOF
|
||||
+#define NTLM_FAIL_OPEN 1
|
||||
+_ACEOF
|
||||
+
|
||||
+ fi
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+EXTERNAL_ACL_HELPERS=
|
||||
+# Check whether --enable-external-acl-helpers was given.
|
||||
+if test "${enable_external_acl_helpers+set}" = set; then
|
||||
+ enableval=$enable_external_acl_helpers; case "$enableval" in
|
||||
+ yes)
|
||||
+ echo "ERROR: --enable-external-acl-helpers requires an argument"
|
||||
+ exit 1
|
||||
+ ;;
|
||||
+ no)
|
||||
+ ;;
|
||||
+ *)
|
||||
+ EXTERNAL_ACL_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
|
||||
+ esac
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+if test -n "$EXTERNAL_ACL_HELPERS"; then
|
||||
+ for helper in $EXTERNAL_ACL_HELPERS; do
|
||||
+ if test -f $srcdir/helpers/external_acl/$helper/Makefile.in; then
|
||||
+ :
|
||||
+ else
|
||||
+ echo "ERROR: external acl helper $helper does not exists"
|
||||
+ exit 1
|
||||
+ fi
|
||||
+ done
|
||||
+ echo "External acl helpers built: $EXTERNAL_ACL_HELPERS"
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
+if test "$require_sasl" = "yes"; then
|
||||
+
|
||||
|
||||
for ac_header in sasl/sasl.h sasl.h
|
||||
do
|
||||
@@ -27733,10 +28088,13 @@
|
||||
NTLM_AUTH_HELPERS!$NTLM_AUTH_HELPERS$ac_delim
|
||||
DIGEST_AUTH_HELPERS!$DIGEST_AUTH_HELPERS$ac_delim
|
||||
NEGOTIATE_AUTH_HELPERS!$NEGOTIATE_AUTH_HELPERS$ac_delim
|
||||
-EXTERNAL_ACL_HELPERS!$EXTERNAL_ACL_HELPERS$ac_delim
|
||||
+KRB5CONFIG!$KRB5CONFIG$ac_delim
|
||||
+KERBLIBS!$KERBLIBS$ac_delim
|
||||
+KERBINC!$KERBINC$ac_delim
|
||||
CPP!$CPP$ac_delim
|
||||
GREP!$GREP$ac_delim
|
||||
EGREP!$EGREP$ac_delim
|
||||
+EXTERNAL_ACL_HELPERS!$EXTERNAL_ACL_HELPERS$ac_delim
|
||||
LIBSASL!$LIBSASL$ac_delim
|
||||
ENABLE_UNLINKD_TRUE!$ENABLE_UNLINKD_TRUE$ac_delim
|
||||
ENABLE_UNLINKD_FALSE!$ENABLE_UNLINKD_FALSE$ac_delim
|
||||
@@ -27784,7 +28142,7 @@
|
||||
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
||||
_ACEOF
|
||||
|
||||
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 89; then
|
||||
+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 92; then
|
||||
break
|
||||
elif $ac_last_try; then
|
||||
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
||||
--- include/autoconf.h.in.orig 2007-09-02 02:14:59.000000000 +0200
|
||||
+++ include/autoconf.h.in 2008-05-26 14:16:26.000000000 +0200
|
||||
@@ -155,6 +155,12 @@
|
||||
/* Define to 1 if you have the <grp.h> header file. */
|
||||
#undef HAVE_GRP_H
|
||||
|
||||
+/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
|
||||
+#undef HAVE_GSSAPI_GSSAPI_H
|
||||
+
|
||||
+/* Define to 1 if you have the <gssapi.h> header file. */
|
||||
+#undef HAVE_GSSAPI_H
|
||||
+
|
||||
/* Define to 1 if you have the `initgroups' function. */
|
||||
#undef HAVE_INITGROUPS
|
||||
|
||||
--- helpers/negotiate_auth/squid_kerb_auth/Makefile.in.orig 2008-05-17 18:06:10.000000000 +0200
|
||||
+++ helpers/negotiate_auth/squid_kerb_auth/Makefile.in 2008-05-17 18:40:15.000000000 +0200
|
||||
@@ -130,6 +130,18 @@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
+#-L$(top_builddir)/lib -lmiscutil $(XTRA_LIBS)
|
||||
+
|
||||
+# HEIMDAL
|
||||
+#KERBINC = -DHEIMDAL -I/usr/include/heimdal
|
||||
+#KERBLIBS = -lgssapi -lkrb5 -lcom_err -lasn1 -lroken
|
||||
+
|
||||
+# MIT
|
||||
+#KERBINC =
|
||||
+#KERBLIBS = -lgssapi_krb5 -lkrb5 -lcom_err
|
||||
+KERBINC = -DHEIMDAL @KERBINC@
|
||||
+KERBLIBS = @KERBLIBS@
|
||||
+KRB5CONFIG = @KRB5CONFIG@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBDLMALLOC = @LIBDLMALLOC@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
@@ -267,15 +279,6 @@
|
||||
squid_kerb_auth_SOURCES = $(SOURCE) $(SPNEGO)
|
||||
#-I$(top_srcdir)/include -I$(top_srcdir)/src
|
||||
LDADD = $(KERBLIBS)
|
||||
-#-L$(top_builddir)/lib -lmiscutil $(XTRA_LIBS)
|
||||
-
|
||||
-# HEIMDAL
|
||||
-#KERBINC = -DHEIMDAL -I/usr/include/heimdal
|
||||
-#KERBLIBS = -lgssapi -lkrb5 -lcom_err -lasn1 -lroken
|
||||
-
|
||||
-# MIT
|
||||
-KERBINC =
|
||||
-KERBLIBS = -lgssapi_krb5 -lkrb5 -lcom_err
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
--- helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c.orig 2008-03-18 00:33:00.000000000 +0100
|
||||
+++ helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c 2008-05-26 15:29:56.000000000 +0200
|
||||
@@ -24,6 +24,7 @@
|
||||
/*
|
||||
* Hosted at http://sourceforge.net/projects/squidkerbauth
|
||||
*/
|
||||
+#include "config.h"
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
@@ -31,6 +32,7 @@
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
+#include <sys/param.h>
|
||||
|
||||
#include "base64.h"
|
||||
#ifndef HAVE_SPNEGO
|
||||
@@ -47,7 +49,11 @@
|
||||
#define PROGRAM "squid_kerb_auth"
|
||||
|
||||
#ifdef HEIMDAL
|
||||
+#ifdef HAVE_GSSAPI_GSSAPI_H
|
||||
+#include <gssapi/gssapi.h>
|
||||
+#else
|
||||
#include <gssapi.h>
|
||||
+#endif
|
||||
#define gss_nt_service_name GSS_C_NT_HOSTBASED_SERVICE
|
||||
#else
|
||||
#include <gssapi/gssapi.h>
|
490
www/squid26/files/icap-2.6-bootstrap.patch
Normal file
490
www/squid26/files/icap-2.6-bootstrap.patch
Normal file
@ -0,0 +1,490 @@
|
||||
Patch 2 of 2 to integrate the icap-2_6 branch into the FreeBSD squid port.
|
||||
|
||||
Created by Thomas-Martin Seck <tmseck@netcologne.de>.
|
||||
|
||||
This patch simulates the autotools bootstrap necessary after applying the
|
||||
ICAP patchset.
|
||||
|
||||
Please see icap-2.6-core.patch for further information.
|
||||
|
||||
Patch last updated: 2008-06-29
|
||||
|
||||
--- configure.orig 2008-06-29 14:48:32.000000000 +0200
|
||||
+++ configure 2008-06-29 14:48:41.000000000 +0200
|
||||
@@ -728,6 +728,8 @@
|
||||
ENABLE_PINGER_FALSE
|
||||
USE_DELAY_POOLS_TRUE
|
||||
USE_DELAY_POOLS_FALSE
|
||||
+USE_ICAP_TRUE
|
||||
+USE_ICAP_FALSE
|
||||
USE_SNMP_TRUE
|
||||
USE_SNMP_FALSE
|
||||
SNMPLIB
|
||||
@@ -797,6 +799,10 @@
|
||||
USE_DEVPOLL_FALSE
|
||||
NEED_OWN_SNPRINTF_TRUE
|
||||
NEED_OWN_SNPRINTF_FALSE
|
||||
+NEED_OWN_STRNSTR_TRUE
|
||||
+NEED_OWN_STRNSTR_FALSE
|
||||
+NEED_OWN_STRCASESTR_TRUE
|
||||
+NEED_OWN_STRCASESTR_FALSE
|
||||
NEED_OWN_STRSEP_TRUE
|
||||
NEED_OWN_STRSEP_FALSE
|
||||
REGEXLIB
|
||||
@@ -1430,6 +1436,7 @@
|
||||
to build your custom policy
|
||||
--enable-icmp Enable ICMP pinging
|
||||
--enable-delay-pools Enable delay pools to limit bandwidth usage
|
||||
+ --enable-icap-support Enable ICAP client capability
|
||||
--enable-useragent-log Enable logging of User-Agent header
|
||||
--enable-referer-log Enable logging of Referer header
|
||||
--disable-wccp Disable Web Cache Coordination V1 Protocol
|
||||
@@ -2352,7 +2359,7 @@
|
||||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='squid'
|
||||
- VERSION='2.6.STABLE21'
|
||||
+ VERSION='2.6.STABLE21+ICAP'
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
@@ -4546,6 +4553,40 @@
|
||||
|
||||
|
||||
|
||||
+
|
||||
+if false; then
|
||||
+ USE_ICAP_TRUE=
|
||||
+ USE_ICAP_FALSE='#'
|
||||
+else
|
||||
+ USE_ICAP_TRUE='#'
|
||||
+ USE_ICAP_FALSE=
|
||||
+fi
|
||||
+
|
||||
+# Check whether --enable-icap-support was given.
|
||||
+if test "${enable_icap_support+set}" = set; then
|
||||
+ enableval=$enable_icap_support; if test "$enableval" = "yes" ; then
|
||||
+ echo "ICAP support enabled"
|
||||
+
|
||||
+cat >>confdefs.h <<\_ACEOF
|
||||
+#define HS_FEAT_ICAP 1
|
||||
+_ACEOF
|
||||
+
|
||||
+
|
||||
+
|
||||
+if true; then
|
||||
+ USE_ICAP_TRUE=
|
||||
+ USE_ICAP_FALSE='#'
|
||||
+else
|
||||
+ USE_ICAP_TRUE='#'
|
||||
+ USE_ICAP_FALSE=
|
||||
+fi
|
||||
+
|
||||
+ fi
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
# Check whether --enable-useragent-log was given.
|
||||
if test "${enable_useragent_log+set}" = set; then
|
||||
enableval=$enable_useragent_log; if test "$enableval" = "yes" ; then
|
||||
@@ -24861,6 +24902,8 @@
|
||||
srand48 \
|
||||
srandom \
|
||||
statfs \
|
||||
+ strnstr \
|
||||
+ strcasestr \
|
||||
strsep \
|
||||
strtoll \
|
||||
sysconf \
|
||||
@@ -25566,6 +25609,52 @@
|
||||
|
||||
|
||||
if false; then
|
||||
+ NEED_OWN_STRNSTR_TRUE=
|
||||
+ NEED_OWN_STRNSTR_FALSE='#'
|
||||
+else
|
||||
+ NEED_OWN_STRNSTR_TRUE='#'
|
||||
+ NEED_OWN_STRNSTR_FALSE=
|
||||
+fi
|
||||
+
|
||||
+if test "$ac_cv_func_strnstr" = "no" || test "$ac_cv_func_vstrnstr" = "no" ; then
|
||||
+
|
||||
+
|
||||
+if true; then
|
||||
+ NEED_OWN_STRNSTR_TRUE=
|
||||
+ NEED_OWN_STRNSTR_FALSE='#'
|
||||
+else
|
||||
+ NEED_OWN_STRNSTR_TRUE='#'
|
||||
+ NEED_OWN_STRNSTR_FALSE=
|
||||
+fi
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
+if false; then
|
||||
+ NEED_OWN_STRCASESTR_TRUE=
|
||||
+ NEED_OWN_STRCASESTR_FALSE='#'
|
||||
+else
|
||||
+ NEED_OWN_STRCASESTR_TRUE='#'
|
||||
+ NEED_OWN_STRCASESTR_FALSE=
|
||||
+fi
|
||||
+
|
||||
+if test "$ac_cv_func_strcasestr" = "no" || test "$ac_cv_func_vstrcasestr" = "no"; then
|
||||
+
|
||||
+
|
||||
+if true; then
|
||||
+ NEED_OWN_STRCASESTR_TRUE=
|
||||
+ NEED_OWN_STRCASESTR_FALSE='#'
|
||||
+else
|
||||
+ NEED_OWN_STRCASESTR_TRUE='#'
|
||||
+ NEED_OWN_STRCASESTR_FALSE=
|
||||
+fi
|
||||
+
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
+if false; then
|
||||
NEED_OWN_STRSEP_TRUE=
|
||||
NEED_OWN_STRSEP_FALSE='#'
|
||||
else
|
||||
@@ -27156,6 +27245,20 @@
|
||||
Usually this means the macro was only invoked conditionally." >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
+if test -z "${USE_ICAP_TRUE}" && test -z "${USE_ICAP_FALSE}"; then
|
||||
+ { { echo "$as_me:$LINENO: error: conditional \"USE_ICAP\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&5
|
||||
+echo "$as_me: error: conditional \"USE_ICAP\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+fi
|
||||
+if test -z "${USE_ICAP_TRUE}" && test -z "${USE_ICAP_FALSE}"; then
|
||||
+ { { echo "$as_me:$LINENO: error: conditional \"USE_ICAP\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&5
|
||||
+echo "$as_me: error: conditional \"USE_ICAP\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+fi
|
||||
if test -z "${USE_SNMP_TRUE}" && test -z "${USE_SNMP_FALSE}"; then
|
||||
{ { echo "$as_me:$LINENO: error: conditional \"USE_SNMP\" was never defined.
|
||||
Usually this means the macro was only invoked conditionally." >&5
|
||||
@@ -27317,6 +27420,34 @@
|
||||
Usually this means the macro was only invoked conditionally." >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
+if test -z "${NEED_OWN_STRNSTR_TRUE}" && test -z "${NEED_OWN_STRNSTR_FALSE}"; then
|
||||
+ { { echo "$as_me:$LINENO: error: conditional \"NEED_OWN_STRNSTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&5
|
||||
+echo "$as_me: error: conditional \"NEED_OWN_STRNSTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+fi
|
||||
+if test -z "${NEED_OWN_STRNSTR_TRUE}" && test -z "${NEED_OWN_STRNSTR_FALSE}"; then
|
||||
+ { { echo "$as_me:$LINENO: error: conditional \"NEED_OWN_STRNSTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&5
|
||||
+echo "$as_me: error: conditional \"NEED_OWN_STRNSTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+fi
|
||||
+if test -z "${NEED_OWN_STRCASESTR_TRUE}" && test -z "${NEED_OWN_STRCASESTR_FALSE}"; then
|
||||
+ { { echo "$as_me:$LINENO: error: conditional \"NEED_OWN_STRCASESTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&5
|
||||
+echo "$as_me: error: conditional \"NEED_OWN_STRCASESTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+fi
|
||||
+if test -z "${NEED_OWN_STRCASESTR_TRUE}" && test -z "${NEED_OWN_STRCASESTR_FALSE}"; then
|
||||
+ { { echo "$as_me:$LINENO: error: conditional \"NEED_OWN_STRCASESTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&5
|
||||
+echo "$as_me: error: conditional \"NEED_OWN_STRCASESTR\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." >&2;}
|
||||
+ { (exit 1); exit 1; }; }
|
||||
+fi
|
||||
if test -z "${NEED_OWN_STRSEP_TRUE}" && test -z "${NEED_OWN_STRSEP_FALSE}"; then
|
||||
{ { echo "$as_me:$LINENO: error: conditional \"NEED_OWN_STRSEP\" was never defined.
|
||||
Usually this means the macro was only invoked conditionally." >&5
|
||||
@@ -28063,6 +28194,8 @@
|
||||
ENABLE_PINGER_FALSE!$ENABLE_PINGER_FALSE$ac_delim
|
||||
USE_DELAY_POOLS_TRUE!$USE_DELAY_POOLS_TRUE$ac_delim
|
||||
USE_DELAY_POOLS_FALSE!$USE_DELAY_POOLS_FALSE$ac_delim
|
||||
+USE_ICAP_TRUE!$USE_ICAP_TRUE$ac_delim
|
||||
+USE_ICAP_FALSE!$USE_ICAP_FALSE$ac_delim
|
||||
USE_SNMP_TRUE!$USE_SNMP_TRUE$ac_delim
|
||||
USE_SNMP_FALSE!$USE_SNMP_FALSE$ac_delim
|
||||
SNMPLIB!$SNMPLIB$ac_delim
|
||||
@@ -28132,6 +28265,10 @@
|
||||
USE_DEVPOLL_FALSE!$USE_DEVPOLL_FALSE$ac_delim
|
||||
NEED_OWN_SNPRINTF_TRUE!$NEED_OWN_SNPRINTF_TRUE$ac_delim
|
||||
NEED_OWN_SNPRINTF_FALSE!$NEED_OWN_SNPRINTF_FALSE$ac_delim
|
||||
+NEED_OWN_STRNSTR_TRUE!$NEED_OWN_STRNSTR_TRUE$ac_delim
|
||||
+NEED_OWN_STRNSTR_FALSE!$NEED_OWN_STRNSTR_FALSE$ac_delim
|
||||
+NEED_OWN_STRCASESTR_TRUE!$NEED_OWN_STRCASESTR_TRUE$ac_delim
|
||||
+NEED_OWN_STRCASESTR_FALSE!$NEED_OWN_STRCASESTR_FALSE$ac_delim
|
||||
NEED_OWN_STRSEP_TRUE!$NEED_OWN_STRSEP_TRUE$ac_delim
|
||||
NEED_OWN_STRSEP_FALSE!$NEED_OWN_STRSEP_FALSE$ac_delim
|
||||
REGEXLIB!$REGEXLIB$ac_delim
|
||||
@@ -28142,7 +28279,7 @@
|
||||
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
||||
_ACEOF
|
||||
|
||||
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 92; then
|
||||
+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 98; then
|
||||
break
|
||||
elif $ac_last_try; then
|
||||
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
||||
--- include/autoconf.h.in.orig Sat Jun 23 23:51:56 2007
|
||||
+++ include/autoconf.h.in Mon Jul 16 22:21:25 2007
|
||||
@@ -457,6 +457,9 @@
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
+/* Define to 1 if you have the `strcasestr' function. */
|
||||
+#undef HAVE_STRCASESTR
|
||||
+
|
||||
/* Define to 1 if you have the `strerror' function. */
|
||||
#undef HAVE_STRERROR
|
||||
|
||||
@@ -466,6 +469,9 @@
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
+/* Define to 1 if you have the `strnstr' function. */
|
||||
+#undef HAVE_STRNSTR
|
||||
+
|
||||
/* Define to 1 if you have the `strsep' function. */
|
||||
#undef HAVE_STRSEP
|
||||
|
||||
@@ -596,6 +602,9 @@
|
||||
|
||||
/* Some systems support __va_copy */
|
||||
#undef HAVE___VA_COPY
|
||||
+
|
||||
+/* Content filtering via ICAP servers. */
|
||||
+#undef HS_FEAT_ICAP
|
||||
|
||||
/* By default (for now anyway) Squid includes options which allows the cache
|
||||
administrator to violate the HTTP protocol specification in terms of cache
|
||||
--- lib/Makefile.in.orig Sat Jun 23 02:14:55 2007
|
||||
+++ lib/Makefile.in Mon Jul 16 22:21:39 2007
|
||||
@@ -62,20 +62,23 @@
|
||||
am__libmiscutil_a_SOURCES_DIST = Array.c base64.c getfullhostname.c \
|
||||
hash.c heap.c html_quote.c iso3307.c md5.c radix.c rfc1035.c \
|
||||
rfc1123.c rfc1738.c rfc2617.c safe_inet_addr.c snprintf.c \
|
||||
- splay.c Stack.c strsep.c stub_memaccount.c util.c uudecode.c \
|
||||
- win32lib.c
|
||||
+ splay.c Stack.c strnstr.c strcasestr.c strsep.c \
|
||||
+ stub_memaccount.c util.c uudecode.c win32lib.c
|
||||
@NEED_OWN_MD5_TRUE@am__objects_1 = md5.$(OBJEXT)
|
||||
@NEED_OWN_SNPRINTF_TRUE@am__objects_2 = snprintf.$(OBJEXT)
|
||||
-@NEED_OWN_STRSEP_TRUE@am__objects_3 = strsep.$(OBJEXT)
|
||||
-@ENABLE_MINGW32SPECIFIC_TRUE@am__objects_4 = win32lib.$(OBJEXT)
|
||||
+@NEED_OWN_STRNSTR_TRUE@am__objects_3 = strnstr.$(OBJEXT)
|
||||
+@NEED_OWN_STRCASESTR_TRUE@am__objects_4 = strcasestr.$(OBJEXT)
|
||||
+@NEED_OWN_STRSEP_TRUE@am__objects_5 = strsep.$(OBJEXT)
|
||||
+@ENABLE_MINGW32SPECIFIC_TRUE@am__objects_6 = win32lib.$(OBJEXT)
|
||||
am_libmiscutil_a_OBJECTS = Array.$(OBJEXT) base64.$(OBJEXT) \
|
||||
getfullhostname.$(OBJEXT) hash.$(OBJEXT) heap.$(OBJEXT) \
|
||||
html_quote.$(OBJEXT) iso3307.$(OBJEXT) $(am__objects_1) \
|
||||
radix.$(OBJEXT) rfc1035.$(OBJEXT) rfc1123.$(OBJEXT) \
|
||||
rfc1738.$(OBJEXT) rfc2617.$(OBJEXT) safe_inet_addr.$(OBJEXT) \
|
||||
$(am__objects_2) splay.$(OBJEXT) Stack.$(OBJEXT) \
|
||||
- $(am__objects_3) stub_memaccount.$(OBJEXT) util.$(OBJEXT) \
|
||||
- uudecode.$(OBJEXT) $(am__objects_4)
|
||||
+ $(am__objects_3) $(am__objects_4) $(am__objects_5) \
|
||||
+ stub_memaccount.$(OBJEXT) util.$(OBJEXT) uudecode.$(OBJEXT) \
|
||||
+ $(am__objects_6)
|
||||
libmiscutil_a_OBJECTS = $(am_libmiscutil_a_OBJECTS)
|
||||
libntlmauth_a_AR = $(AR) $(ARFLAGS)
|
||||
libntlmauth_a_DEPENDENCIES = @LIBOBJS@
|
||||
@@ -189,6 +192,10 @@
|
||||
NEED_OWN_MD5_TRUE = @NEED_OWN_MD5_TRUE@
|
||||
NEED_OWN_SNPRINTF_FALSE = @NEED_OWN_SNPRINTF_FALSE@
|
||||
NEED_OWN_SNPRINTF_TRUE = @NEED_OWN_SNPRINTF_TRUE@
|
||||
+NEED_OWN_STRCASESTR_FALSE = @NEED_OWN_STRCASESTR_FALSE@
|
||||
+NEED_OWN_STRCASESTR_TRUE = @NEED_OWN_STRCASESTR_TRUE@
|
||||
+NEED_OWN_STRNSTR_FALSE = @NEED_OWN_STRNSTR_FALSE@
|
||||
+NEED_OWN_STRNSTR_TRUE = @NEED_OWN_STRNSTR_TRUE@
|
||||
NEED_OWN_STRSEP_FALSE = @NEED_OWN_STRSEP_FALSE@
|
||||
NEED_OWN_STRSEP_TRUE = @NEED_OWN_STRSEP_TRUE@
|
||||
NEGOTIATE_AUTH_HELPERS = @NEGOTIATE_AUTH_HELPERS@
|
||||
@@ -230,6 +237,8 @@
|
||||
USE_DNSSERVER_TRUE = @USE_DNSSERVER_TRUE@
|
||||
USE_EPOLL_FALSE = @USE_EPOLL_FALSE@
|
||||
USE_EPOLL_TRUE = @USE_EPOLL_TRUE@
|
||||
+USE_ICAP_FALSE = @USE_ICAP_FALSE@
|
||||
+USE_ICAP_TRUE = @USE_ICAP_TRUE@
|
||||
USE_KQUEUE_FALSE = @USE_KQUEUE_FALSE@
|
||||
USE_KQUEUE_TRUE = @USE_KQUEUE_TRUE@
|
||||
USE_POLL_FALSE = @USE_POLL_FALSE@
|
||||
@@ -287,6 +296,10 @@
|
||||
target_alias = @target_alias@
|
||||
@NEED_OWN_SNPRINTF_FALSE@SNPRINTFSOURCE =
|
||||
@NEED_OWN_SNPRINTF_TRUE@SNPRINTFSOURCE = snprintf.c
|
||||
+@NEED_OWN_STRNSTR_FALSE@STRNSTRSOURCE =
|
||||
+@NEED_OWN_STRNSTR_TRUE@STRNSTRSOURCE = strnstr.c
|
||||
+@NEED_OWN_STRCASESTR_FALSE@STRCASESTRSOURCE =
|
||||
+@NEED_OWN_STRCASESTR_TRUE@STRCASESTRSOURCE = strcasestr.c
|
||||
@NEED_OWN_STRSEP_FALSE@STRSEPSOURCE =
|
||||
@NEED_OWN_STRSEP_TRUE@STRSEPSOURCE = strsep.c
|
||||
@NEED_OWN_MD5_FALSE@MD5SOURCE =
|
||||
@@ -331,6 +344,8 @@
|
||||
$(SNPRINTFSOURCE) \
|
||||
splay.c \
|
||||
Stack.c \
|
||||
+ $(STRNSTRSOURCE) \
|
||||
+ $(STRCASESTRSOURCE) \
|
||||
$(STRSEPSOURCE) \
|
||||
stub_memaccount.c \
|
||||
util.c \
|
||||
@@ -446,6 +461,8 @@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/snprintf.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splay.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sspwin32.Po@am__quote@
|
||||
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strcasestr.Po@am__quote@
|
||||
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strnstr.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strsep.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stub_memaccount.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Po@am__quote@
|
||||
--- src/Makefile.in.orig Sat Jun 23 02:14:56 2007
|
||||
+++ src/Makefile.in Mon Jul 16 22:21:33 2007
|
||||
@@ -91,14 +91,15 @@
|
||||
globals.h gopher.c helper.c htcp.c http.c HttpStatusLine.c \
|
||||
HttpHdrCc.c HttpHdrRange.c HttpHdrContRange.c HttpHeader.c \
|
||||
HttpHeaderTools.c HttpBody.c HttpMsg.c HttpReply.c \
|
||||
- HttpRequest.c icmp.c icp_v2.c icp_v3.c ident.c internal.c \
|
||||
- ipc.c ipc_win32.c ipcache.c leakfinder.c locrewrite.c \
|
||||
- logfile.c main.c mem.c MemPool.c MemBuf.c mime.c multicast.c \
|
||||
- neighbors.c net_db.c Packer.c pconn.c peer_digest.c \
|
||||
- peer_monitor.c peer_select.c peer_sourcehash.c peer_userhash.c \
|
||||
- protos.h redirect.c referer.c refresh.c send-announce.c \
|
||||
- snmp_core.c snmp_agent.c squid.h ssl.c ssl_support.c stat.c \
|
||||
- StatHist.c String.c stmem.c store.c store_io.c store_client.c \
|
||||
+ HttpRequest.c icap_common.c icap_reqmod.c icap_respmod.c \
|
||||
+ icap_opt.c icmp.c icp_v2.c icp_v3.c ident.c internal.c ipc.c \
|
||||
+ ipc_win32.c ipcache.c leakfinder.c locrewrite.c logfile.c \
|
||||
+ main.c mem.c MemPool.c MemBuf.c mime.c multicast.c neighbors.c \
|
||||
+ net_db.c Packer.c pconn.c peer_digest.c peer_monitor.c \
|
||||
+ peer_select.c peer_sourcehash.c peer_userhash.c protos.h \
|
||||
+ redirect.c referer.c refresh.c send-announce.c snmp_core.c \
|
||||
+ snmp_agent.c squid.h ssl.c ssl_support.c stat.c StatHist.c \
|
||||
+ String.c stmem.c store.c store_io.c store_client.c \
|
||||
store_digest.c store_dir.c store_key_md5.c store_log.c \
|
||||
store_rebuild.c store_swapin.c store_swapmeta.c \
|
||||
store_swapout.c structs.h tools.c typedefs.h unlinkd.c url.c \
|
||||
@@ -115,14 +116,17 @@
|
||||
@USE_DNSSERVER_FALSE@am__objects_3 = dns_internal.$(OBJEXT)
|
||||
@USE_DNSSERVER_TRUE@am__objects_3 = dns.$(OBJEXT)
|
||||
@ENABLE_HTCP_TRUE@am__objects_4 = htcp.$(OBJEXT)
|
||||
-@ENABLE_MINGW32SPECIFIC_FALSE@am__objects_5 = ipc.$(OBJEXT)
|
||||
-@ENABLE_MINGW32SPECIFIC_TRUE@am__objects_5 = ipc_win32.$(OBJEXT)
|
||||
-@MAKE_LEAKFINDER_TRUE@am__objects_6 = leakfinder.$(OBJEXT)
|
||||
-@USE_SNMP_TRUE@am__objects_7 = snmp_core.$(OBJEXT) \
|
||||
+@USE_ICAP_TRUE@am__objects_5 = icap_common.$(OBJEXT) \
|
||||
+@USE_ICAP_TRUE@ icap_reqmod.$(OBJEXT) icap_respmod.$(OBJEXT) \
|
||||
+@USE_ICAP_TRUE@ icap_opt.$(OBJEXT)
|
||||
+@ENABLE_MINGW32SPECIFIC_FALSE@am__objects_6 = ipc.$(OBJEXT)
|
||||
+@ENABLE_MINGW32SPECIFIC_TRUE@am__objects_6 = ipc_win32.$(OBJEXT)
|
||||
+@MAKE_LEAKFINDER_TRUE@am__objects_7 = leakfinder.$(OBJEXT)
|
||||
+@USE_SNMP_TRUE@am__objects_8 = snmp_core.$(OBJEXT) \
|
||||
@USE_SNMP_TRUE@ snmp_agent.$(OBJEXT)
|
||||
-@ENABLE_SSL_TRUE@am__objects_8 = ssl_support.$(OBJEXT)
|
||||
-@ENABLE_UNLINKD_TRUE@am__objects_9 = unlinkd.$(OBJEXT)
|
||||
-@ENABLE_WIN32SPECIFIC_TRUE@am__objects_10 = win32.$(OBJEXT)
|
||||
+@ENABLE_SSL_TRUE@am__objects_9 = ssl_support.$(OBJEXT)
|
||||
+@ENABLE_UNLINKD_TRUE@am__objects_10 = unlinkd.$(OBJEXT)
|
||||
+@ENABLE_WIN32SPECIFIC_TRUE@am__objects_11 = win32.$(OBJEXT)
|
||||
am_squid_OBJECTS = access_log.$(OBJEXT) acl.$(OBJEXT) asn.$(OBJEXT) \
|
||||
authenticate.$(OBJEXT) cache_cf.$(OBJEXT) \
|
||||
CacheDigest.$(OBJEXT) cache_manager.$(OBJEXT) carp.$(OBJEXT) \
|
||||
@@ -137,27 +141,27 @@
|
||||
HttpHdrRange.$(OBJEXT) HttpHdrContRange.$(OBJEXT) \
|
||||
HttpHeader.$(OBJEXT) HttpHeaderTools.$(OBJEXT) \
|
||||
HttpBody.$(OBJEXT) HttpMsg.$(OBJEXT) HttpReply.$(OBJEXT) \
|
||||
- HttpRequest.$(OBJEXT) icmp.$(OBJEXT) icp_v2.$(OBJEXT) \
|
||||
- icp_v3.$(OBJEXT) ident.$(OBJEXT) internal.$(OBJEXT) \
|
||||
- $(am__objects_5) ipcache.$(OBJEXT) $(am__objects_6) \
|
||||
- locrewrite.$(OBJEXT) logfile.$(OBJEXT) main.$(OBJEXT) \
|
||||
- mem.$(OBJEXT) MemPool.$(OBJEXT) MemBuf.$(OBJEXT) \
|
||||
- mime.$(OBJEXT) multicast.$(OBJEXT) neighbors.$(OBJEXT) \
|
||||
- net_db.$(OBJEXT) Packer.$(OBJEXT) pconn.$(OBJEXT) \
|
||||
- peer_digest.$(OBJEXT) peer_monitor.$(OBJEXT) \
|
||||
+ HttpRequest.$(OBJEXT) $(am__objects_5) icmp.$(OBJEXT) \
|
||||
+ icp_v2.$(OBJEXT) icp_v3.$(OBJEXT) ident.$(OBJEXT) \
|
||||
+ internal.$(OBJEXT) $(am__objects_6) ipcache.$(OBJEXT) \
|
||||
+ $(am__objects_7) locrewrite.$(OBJEXT) logfile.$(OBJEXT) \
|
||||
+ main.$(OBJEXT) mem.$(OBJEXT) MemPool.$(OBJEXT) \
|
||||
+ MemBuf.$(OBJEXT) mime.$(OBJEXT) multicast.$(OBJEXT) \
|
||||
+ neighbors.$(OBJEXT) net_db.$(OBJEXT) Packer.$(OBJEXT) \
|
||||
+ pconn.$(OBJEXT) peer_digest.$(OBJEXT) peer_monitor.$(OBJEXT) \
|
||||
peer_select.$(OBJEXT) peer_sourcehash.$(OBJEXT) \
|
||||
peer_userhash.$(OBJEXT) redirect.$(OBJEXT) referer.$(OBJEXT) \
|
||||
- refresh.$(OBJEXT) send-announce.$(OBJEXT) $(am__objects_7) \
|
||||
- ssl.$(OBJEXT) $(am__objects_8) stat.$(OBJEXT) \
|
||||
+ refresh.$(OBJEXT) send-announce.$(OBJEXT) $(am__objects_8) \
|
||||
+ ssl.$(OBJEXT) $(am__objects_9) stat.$(OBJEXT) \
|
||||
StatHist.$(OBJEXT) String.$(OBJEXT) stmem.$(OBJEXT) \
|
||||
store.$(OBJEXT) store_io.$(OBJEXT) store_client.$(OBJEXT) \
|
||||
store_digest.$(OBJEXT) store_dir.$(OBJEXT) \
|
||||
store_key_md5.$(OBJEXT) store_log.$(OBJEXT) \
|
||||
store_rebuild.$(OBJEXT) store_swapin.$(OBJEXT) \
|
||||
store_swapmeta.$(OBJEXT) store_swapout.$(OBJEXT) \
|
||||
- tools.$(OBJEXT) $(am__objects_9) url.$(OBJEXT) urn.$(OBJEXT) \
|
||||
+ tools.$(OBJEXT) $(am__objects_10) url.$(OBJEXT) urn.$(OBJEXT) \
|
||||
useragent.$(OBJEXT) wais.$(OBJEXT) wccp.$(OBJEXT) \
|
||||
- wccp2.$(OBJEXT) whois.$(OBJEXT) $(am__objects_10)
|
||||
+ wccp2.$(OBJEXT) whois.$(OBJEXT) $(am__objects_11)
|
||||
nodist_squid_OBJECTS = repl_modules.$(OBJEXT) auth_modules.$(OBJEXT) \
|
||||
store_modules.$(OBJEXT) globals.$(OBJEXT) \
|
||||
string_arrays.$(OBJEXT)
|
||||
@@ -282,6 +286,10 @@
|
||||
NEED_OWN_MD5_TRUE = @NEED_OWN_MD5_TRUE@
|
||||
NEED_OWN_SNPRINTF_FALSE = @NEED_OWN_SNPRINTF_FALSE@
|
||||
NEED_OWN_SNPRINTF_TRUE = @NEED_OWN_SNPRINTF_TRUE@
|
||||
+NEED_OWN_STRCASESTR_FALSE = @NEED_OWN_STRCASESTR_FALSE@
|
||||
+NEED_OWN_STRCASESTR_TRUE = @NEED_OWN_STRCASESTR_TRUE@
|
||||
+NEED_OWN_STRNSTR_FALSE = @NEED_OWN_STRNSTR_FALSE@
|
||||
+NEED_OWN_STRNSTR_TRUE = @NEED_OWN_STRNSTR_TRUE@
|
||||
NEED_OWN_STRSEP_FALSE = @NEED_OWN_STRSEP_FALSE@
|
||||
NEED_OWN_STRSEP_TRUE = @NEED_OWN_STRSEP_TRUE@
|
||||
NEGOTIATE_AUTH_HELPERS = @NEGOTIATE_AUTH_HELPERS@
|
||||
@@ -323,6 +331,8 @@
|
||||
USE_DNSSERVER_TRUE = @USE_DNSSERVER_TRUE@
|
||||
USE_EPOLL_FALSE = @USE_EPOLL_FALSE@
|
||||
USE_EPOLL_TRUE = @USE_EPOLL_TRUE@
|
||||
+USE_ICAP_FALSE = @USE_ICAP_FALSE@
|
||||
+USE_ICAP_TRUE = @USE_ICAP_TRUE@
|
||||
USE_KQUEUE_FALSE = @USE_KQUEUE_FALSE@
|
||||
USE_KQUEUE_TRUE = @USE_KQUEUE_TRUE@
|
||||
USE_POLL_FALSE = @USE_POLL_FALSE@
|
||||
@@ -378,6 +388,8 @@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
+@USE_ICAP_FALSE@ICAPSOURCE =
|
||||
+@USE_ICAP_TRUE@ICAPSOURCE = icap_common.c icap_reqmod.c icap_respmod.c icap_opt.c
|
||||
@USE_DNSSERVER_FALSE@DNSSOURCE = dns_internal.c
|
||||
@USE_DNSSERVER_TRUE@DNSSOURCE = dns.c
|
||||
@USE_DNSSERVER_FALSE@DNSSERVER =
|
||||
@@ -483,6 +495,7 @@
|
||||
HttpMsg.c \
|
||||
HttpReply.c \
|
||||
HttpRequest.c \
|
||||
+ $(ICAPSOURCE) \
|
||||
icmp.c \
|
||||
icp_v2.c \
|
||||
icp_v3.c \
|
||||
@@ -802,6 +815,10 @@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/helper.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htcp.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http.Po@am__quote@
|
||||
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icap_common.Po@am__quote@
|
||||
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icap_opt.Po@am__quote@
|
||||
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icap_reqmod.Po@am__quote@
|
||||
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icap_respmod.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icmp.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icp_v2.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icp_v3.Po@am__quote@
|
7056
www/squid26/files/icap-2.6-core.patch
Normal file
7056
www/squid26/files/icap-2.6-core.patch
Normal file
File diff suppressed because it is too large
Load Diff
11
www/squid26/files/patch-aa
Normal file
11
www/squid26/files/patch-aa
Normal file
@ -0,0 +1,11 @@
|
||||
--- include/squid_types.h.orig Mon Jul 7 00:45:26 2003
|
||||
+++ include/squid_types.h Mon Jul 7 00:48:39 2003
|
||||
@@ -66,8 +66,5 @@
|
||||
#if HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
-#if HAVE_SYS_BITYPES_H
|
||||
-#include <sys/bitypes.h>
|
||||
-#endif
|
||||
|
||||
#endif /* SQUID_TYPES_H */
|
19
www/squid26/files/patch-configure
Normal file
19
www/squid26/files/patch-configure
Normal file
@ -0,0 +1,19 @@
|
||||
Patch for Squid bug 2203:
|
||||
|
||||
--with-maxfd inadvertently unsets LDFLAGS.
|
||||
--- configure.orig 2008-04-02 21:51:54.000000000 +0200
|
||||
+++ configure 2008-04-02 21:55:28.000000000 +0200
|
||||
@@ -25795,11 +25795,12 @@
|
||||
|
||||
fi
|
||||
|
||||
+TLDFLAGS="$LDFLAGS"
|
||||
+
|
||||
if test -z "$SQUID_MAXFD"; then
|
||||
|
||||
{ echo "$as_me:$LINENO: checking Maximum number of filedescriptors we can open" >&5
|
||||
echo $ECHO_N "checking Maximum number of filedescriptors we can open... $ECHO_C" >&6; }
|
||||
-TLDFLAGS="$LDFLAGS"
|
||||
case $host in
|
||||
i386-unknown-freebsd*)
|
||||
if echo "$LDFLAGS" | grep -q pthread; then
|
11
www/squid26/files/patch-helpers-basic_auth-SMB-Makefile.in
Normal file
11
www/squid26/files/patch-helpers-basic_auth-SMB-Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
--- helpers/basic_auth/SMB/Makefile.in.orig Tue Oct 4 07:29:26 2005
|
||||
+++ helpers/basic_auth/SMB/Makefile.in Tue Oct 4 07:29:49 2005
|
||||
@@ -129,7 +129,7 @@
|
||||
makesnmplib = @makesnmplib@
|
||||
|
||||
SMB_AUTH_HELPER = smb_auth.sh
|
||||
-SAMBAPREFIX = /usr/local/samba
|
||||
+SAMBAPREFIX = %%LOCALBASE%%
|
||||
SMB_AUTH_HELPER_PATH = $(libexecdir)/$(SMB_AUTH_HELPER)
|
||||
|
||||
libexec_SCRIPTS = $(SMB_AUTH_HELPER)
|
13
www/squid26/files/patch-helpers-basic_auth-SMB-smb_auth.sh
Normal file
13
www/squid26/files/patch-helpers-basic_auth-SMB-smb_auth.sh
Normal file
@ -0,0 +1,13 @@
|
||||
*** helpers/basic_auth/SMB/smb_auth.sh.orig Thu Feb 26 20:58:22 2004
|
||||
--- helpers/basic_auth/SMB/smb_auth.sh Thu Feb 26 20:59:45 2004
|
||||
***************
|
||||
*** 17,22 ****
|
||||
--- 17,24 ----
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
+ SAMBAPREFIX=${SAMBAPREFIX:-%%LOCALBASE%%}
|
||||
+
|
||||
read DOMAINNAME
|
||||
read PASSTHROUGH
|
||||
read NMBADDR
|
50
www/squid26/files/patch-src-cf.data.pre
Normal file
50
www/squid26/files/patch-src-cf.data.pre
Normal file
@ -0,0 +1,50 @@
|
||||
--- src/cf.data.pre.orig Tue Jun 26 01:34:57 2007
|
||||
+++ src/cf.data.pre Mon Jul 16 20:02:21 2007
|
||||
@@ -1207,6 +1207,21 @@
|
||||
|
||||
Note that for coss, max-size must be less than COSS_MEMBUF_SZ
|
||||
(hard coded at 1 MB).
|
||||
+
|
||||
+ Note for FreeBSD users:
|
||||
+ COSS -- like aufs -- uses async IO so if you compiled Squid without
|
||||
+ support for the aufs storage type, COSS will use POSIX AIO.
|
||||
+ This means that you need to add the line
|
||||
+
|
||||
+ options VFS_AIO
|
||||
+
|
||||
+ to your kernel configuration in order to use COSS.
|
||||
+
|
||||
+ On FreeBSD 5 and higher you can load the aio(4) module and do not
|
||||
+ necessarily need to recompile your kernel.
|
||||
+
|
||||
+ If you compiled Squid with both support for aufs and COSS, COSS
|
||||
+ will use aufs' routines and does not need special kernel support.
|
||||
DOC_END
|
||||
|
||||
NAME: logformat
|
||||
@@ -1439,6 +1454,10 @@
|
||||
LOC: Config.pidFilename
|
||||
DOC_START
|
||||
A filename to write the process-id to. To disable, enter "none".
|
||||
+
|
||||
+ Note: If you change this setting, you need to set squid_pidfile
|
||||
+ in /etc/rc.conf to reflect the new value. Please see
|
||||
+ %%PREFIX%%/etc/rc.d/squid for details.
|
||||
DOC_END
|
||||
|
||||
NAME: debug_options
|
||||
@@ -3275,12 +3294,12 @@
|
||||
|
||||
NAME: cache_effective_user
|
||||
TYPE: string
|
||||
-DEFAULT: nobody
|
||||
+DEFAULT: %%SQUID_UID%%
|
||||
LOC: Config.effectiveUser
|
||||
DOC_START
|
||||
If you start Squid as root, it will change its effective/real
|
||||
UID/GID to the user specified below. The default is to change
|
||||
- to UID to nobody. If you define cache_effective_user, but not
|
||||
+ to UID to %%SQUID_UID%%. If you define cache_effective_user, but not
|
||||
cache_effective_group, Squid sets the GID to the effective
|
||||
user's default group ID (taken from the password file) and
|
||||
supplementary group list from the from groups membership of
|
11
www/squid26/files/patch-tools-Makefile.in
Normal file
11
www/squid26/files/patch-tools-Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
--- tools/Makefile.in.orig 2008-05-10 18:39:20.000000000 +0200
|
||||
+++ tools/Makefile.in 2008-05-10 18:40:02.000000000 +0200
|
||||
@@ -791,6 +791,8 @@
|
||||
$(OBJS): $(top_srcdir)/include/version.h ../include/autoconf.h
|
||||
|
||||
install-data-local:
|
||||
+ @echo "$(INSTALL_DATA) $(srcdir)/cachemgr.conf $(DESTDIR)$(DEFAULT_CACHEMGR_CONFIG).default"; \
|
||||
+ $(INSTALL_DATA) $(srcdir)/cachemgr.conf $(DESTDIR)$(DEFAULT_CACHEMGR_CONFIG).default;
|
||||
@if test -f $(DESTDIR)$(DEFAULT_CACHEMGR_CONFIG) ; then \
|
||||
echo "$@ will not overwrite existing $(DESTDIR)$(DEFAULT_CACHEMGR_CONFIG)" ; \
|
||||
else \
|
39
www/squid26/files/pkg-deinstall.in
Normal file
39
www/squid26/files/pkg-deinstall.in
Normal file
@ -0,0 +1,39 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PATH=/bin:/usr/bin:/usr/sbin
|
||||
|
||||
case $2 in
|
||||
DEINSTALL)
|
||||
cd ${PKG_PREFIX}/etc/squid || exit 1
|
||||
for f in cachemgr.conf mime.conf msntauth.conf squid.conf; do
|
||||
cmp -s -z ${f} ${f}.default && rm ${f}
|
||||
done
|
||||
;;
|
||||
POST-DEINSTALL)
|
||||
echo "===> post-deinstallation information for $1:"
|
||||
echo ""
|
||||
echo " Note:"
|
||||
echo " Squid related user accounts and groups were not removed."
|
||||
echo ""
|
||||
echo " To remove the '%%SQUID_UID%%' user and the '%%SQUID_GID%%' group which were"
|
||||
echo " created by a default installation of this package, run"
|
||||
echo ""
|
||||
echo " pw userdel -n %%SQUID_UID%% -u 100"
|
||||
if [ -d ${PKG_PREFIX}/squid -o -d ${PKG_PREFIX}/etc/squid ] ; then
|
||||
echo ""
|
||||
echo " In order to ease updates the cache and log directories"
|
||||
echo " and all configuration files modified by you were preserved."
|
||||
echo ""
|
||||
echo " Please remove them manually if you do not want to use"
|
||||
echo " Squid any longer."
|
||||
fi
|
||||
echo ""
|
||||
;;
|
||||
*)
|
||||
exit 64
|
||||
;;
|
||||
esac
|
||||
exit 0
|
81
www/squid26/files/pkg-install.in
Normal file
81
www/squid26/files/pkg-install.in
Normal file
@ -0,0 +1,81 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PATH=/bin:/usr/bin:/usr/sbin
|
||||
pkgname=$1
|
||||
squid_base="${PKG_PREFIX:-%%PREFIX%%}/squid"
|
||||
squid_confdir="${PKG_PREFIX:-%%PREFIX%%}/etc/squid"
|
||||
if [ -x /usr/sbin/nologin ]; then
|
||||
nologin=/usr/sbin/nologin
|
||||
else
|
||||
nologin=/sbin/nologin
|
||||
fi
|
||||
squid_user="%%SQUID_UID%%"
|
||||
squid_group="%%SQUID_GID%%"
|
||||
squid_gid=100
|
||||
squid_uid=100
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
echo "===> Pre-installation configuration for ${pkgname}"
|
||||
if ! pw groupshow ${squid_group} -q >/dev/null ; then
|
||||
echo "There is no group '${squid_group}' on this system, so I will try to create it (using group id ${squid_gid}):"
|
||||
if ! pw groupadd ${squid_group} -g ${squid_gid} -q ; then
|
||||
echo "Failed to create group \"${squid_group}\"!" >&2
|
||||
echo "Please create it manually." >&2
|
||||
exit 1
|
||||
else
|
||||
echo "Group '${squid_group}' created successfully:"
|
||||
fi
|
||||
else
|
||||
echo "I will use the existing group '${squid_group}':"
|
||||
fi
|
||||
pw groupshow ${squid_group}
|
||||
|
||||
if ! pw usershow ${squid_user} -q >/dev/null ; then
|
||||
echo "There is no account '${squid_user}' on this system, so I will try to create it (using user id ${squid_uid}):"
|
||||
if ! pw useradd -q -n ${squid_user} \
|
||||
-u ${squid_uid} -g ${squid_group} \
|
||||
-c "Squid caching-proxy pseudo user" \
|
||||
-d "${squid_base}" -s "${nologin}" \
|
||||
-h - ; then
|
||||
echo "Failed to create user '${squid_user}'!" >&2
|
||||
echo "Please create it manually." >&2
|
||||
exit 1
|
||||
else
|
||||
echo "User '${squid_user}' created successfully:"
|
||||
fi
|
||||
else
|
||||
echo "I will use the existing user '${squid_user}':"
|
||||
fi
|
||||
pw usershow ${squid_user}
|
||||
for dir in cache logs; do
|
||||
if [ ! -d ${squid_base}/${dir} ]; then
|
||||
echo "Creating ${squid_base}/${dir}..."
|
||||
install -d -o ${squid_user} -g ${squid_group} \
|
||||
-m 0750 ${squid_base}/${dir}
|
||||
fi
|
||||
done
|
||||
if [ ! -d ${squid_confdir} ]; then
|
||||
echo "Creating ${squid_confdir}..."
|
||||
install -d -o root -g ${squid_group} \
|
||||
-m 0750 ${squid_confdir}
|
||||
fi
|
||||
;;
|
||||
POST-INSTALL)
|
||||
for file in cachemgr.conf mime.conf squid.conf; do
|
||||
if [ ! -f ${squid_confdir}/${file} \
|
||||
-a -f ${squid_confdir}/${file}.default ]; then
|
||||
echo "Creating ${file} from default..."
|
||||
install -c -o root -g ${squid_group} -m 0640 \
|
||||
${squid_confdir}/${file}.default \
|
||||
${squid_confdir}/${file}
|
||||
fi
|
||||
done
|
||||
;;
|
||||
*)
|
||||
exit 64
|
||||
;;
|
||||
esac
|
||||
exit 0
|
31
www/squid26/files/pkg-message.in
Normal file
31
www/squid26/files/pkg-message.in
Normal file
@ -0,0 +1,31 @@
|
||||
o You can find the configuration files for this package in the
|
||||
directory %%PREFIX%%/etc/squid.
|
||||
|
||||
o A cache directory has been created in %%PREFIX%%/squid/cache.
|
||||
Log files will be written to %%PREFIX%%/squid/logs.
|
||||
|
||||
Note:
|
||||
You must initialize new cache directories before you can start
|
||||
squid. Do this by running "squid -z" as 'root' or '%%SQUID_UID%%'.
|
||||
If your cache directories are already initialized (e.g. after an
|
||||
upgrade of squid) you do not need to initialize them again.
|
||||
|
||||
o The default configuration will deny everyone access to the
|
||||
proxy service. Edit the "http_access" directives in
|
||||
%%PREFIX%%/etc/squid/squid.conf to suit your needs.
|
||||
|
||||
Please note that the Squid start script is an rc.d style script.
|
||||
This means that Squid will not start automatically at boot
|
||||
time unless it is explicitly enabled.
|
||||
|
||||
To enable Squid, set squid_enable=yes in either
|
||||
/etc/rc.conf, /etc/rc.conf.local or /etc/rc.conf.d/squid
|
||||
Please see %%PREFIX%%/etc/rc.d/squid for further details.
|
||||
|
||||
Note:
|
||||
If you just updated your Squid installation from 2.5 or earlier,
|
||||
make sure to check your Squid configuration against the 2.6 default
|
||||
configuration file %%PREFIX%%/etc/squid/squid.conf.default.
|
||||
|
||||
Additionally, you should check your configuration by calling
|
||||
'squid -f /path/to/squid.conf -k parse' before starting Squid.
|
60
www/squid26/files/squid.in
Normal file
60
www/squid26/files/squid.in
Normal file
@ -0,0 +1,60 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: squid
|
||||
# REQUIRE: LOGIN
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# Note:
|
||||
# Set "squid_enable=yes" in either /etc/rc.conf, /etc/rc.conf.local or
|
||||
# /etc/rc.conf.d/squid to make this script actually do something. There
|
||||
# you can also set squid_chdir, squid_pidfile, squid_user, and squid_flags.
|
||||
#
|
||||
# Please see squid(8), rc.conf(5) and rc(8) for further details.
|
||||
#
|
||||
|
||||
squid_checkrunning() {
|
||||
${command} ${squid_flags} -k check 2>/dev/null
|
||||
}
|
||||
|
||||
squid_stop() {
|
||||
echo "Stopping ${name}."
|
||||
${command} ${squid_flags} -k shutdown
|
||||
run_rc_command poll
|
||||
}
|
||||
|
||||
. %%RC_SUBR%%
|
||||
|
||||
name=squid
|
||||
rcvar=${name}_enable
|
||||
|
||||
command=%%PREFIX%%/sbin/squid
|
||||
extra_commands=reload
|
||||
reload_cmd="${command} ${squid_flags} -k reconfigure"
|
||||
stop_precmd="squid_checkrunning"
|
||||
stop_cmd="squid_stop"
|
||||
|
||||
load_rc_config ${name}
|
||||
|
||||
squid_chdir=${squid_chdir:-"%%PREFIX%%/squid/logs"}
|
||||
squid_enable=${squid_enable:-"NO"}
|
||||
squid_flags=${squid_flags-"-D"}
|
||||
squid_pidfile=${squid_pidfile:-"%%PREFIX%%/squid/logs/squid.pid"}
|
||||
squid_user=${squid_user:-%%SQUID_UID%%}
|
||||
default_config=%%PREFIX%%/etc/squid/squid.conf
|
||||
|
||||
pidfile=${squid_pidfile}
|
||||
required_dirs=${squid_chdir}
|
||||
|
||||
# squid(8) will not start if ${default_config} is not present so try
|
||||
# to catch that beforehand via ${required_files} rather than make
|
||||
# squid(8) crash.
|
||||
# If you remove the default configuration file make sure to add
|
||||
# '-f /path/to/your/squid.conf' to squid_flags
|
||||
|
||||
if [ -z "${squid_flags}" ]; then
|
||||
required_files=${default_config}
|
||||
fi
|
||||
|
||||
run_rc_command "$1"
|
10
www/squid26/pkg-descr
Normal file
10
www/squid26/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
Squid is a high-performance proxy caching server for web clients,
|
||||
supporting FTP, gopher, and HTTP data objects. Unlike traditional
|
||||
caching software, Squid handles all requests in a single, non-blocking,
|
||||
I/O-driven process.
|
||||
|
||||
Squid supports SSL, extensive access controls, and full request logging.
|
||||
By using the lightweight Internet Cache Protocol, Squid caches can be
|
||||
arranged in a hierarchy or mesh for additional bandwidth savings.
|
||||
|
||||
WWW: http://www.squid-cache.org/
|
Loading…
x
Reference in New Issue
Block a user