2db223a7bc
0.3.5 Changes * Bug fix: Wrong status code for REQMOD requests without preview * Bug fix: Spaces on header may result to bad request error * Bug fix: cache drops non expired items * Add the "DefaultService" configuration parameter. For use with buggy clients which are not include icap service name in urls. * Add support for ICAP requests pipelining * Add the "SupportBuggyClients" configuration parameter. If enabled c-icap tries to handle buggy ICAP clients which are not include correct delimiters between HTTP and ICAP headers. Other minor fixes 0.3.4 Changes * Berkeley databases may have problems when newer Berkeley DB library used hash_table, always uses a very small hash table resulting to slow search operations * c-icap crashes when trying to parse lookup table parameters * local cache items are never expired. Affects dnsbl and ldap lookup tables * posix interprocess locking does not work Other minor fixes 0.3.3 Changes * bug 67: "Bug in the service. Please report to the service author..." * Bug fix: ci_format_text function may exceeds the buffer Other minor fixes 0.3.2 Changes * Bug fix: Restrict permissions on c-icap.ctl * Author: Mathieu Parent sathieu@debian.org * Bug-Debian: http://bugs.debian.org/645122 * Bug fix: Correctly daemonize * Author: Mathieu Parent sathieu@debian.org * Bug-Debian: http://bugs.debian.org/645310 0.3.1 For installation instructions: * https://sourceforge.net/apps/trac/c-icap/wiki/configcicap * https://sourceforge.net/apps/trac/c-icap/wiki Changes * New interfaces added to help service developers. 0.2.6 Bugs fixes * The c-icap does not build correctly in some platforms * The c-icap-client does not display ICAP headers on 204 preview response * The xheaders are not displayed when %<ih fmt code used * Fix deadlocks in access log subsystem
36 lines
1,004 B
Makefile
36 lines
1,004 B
Makefile
# $NetBSD: Makefile,v 1.16 2015/06/12 23:39:11 taca Exp $
|
|
|
|
DISTNAME= c_icap-0.3.5
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=c-icap/}
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://c-icap.sourceforge.net/
|
|
COMMENT= Implementation of an ICAP server
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-large-files
|
|
|
|
EGDIR= ${PREFIX}/share/c-icap
|
|
CONF_FILES= ${EGDIR}/c-icap.conf.default ${PKG_SYSCONFDIR}/c-icap.conf
|
|
CONF_FILES+= ${EGDIR}/c-icap.magic.default ${PKG_SYSCONFDIR}/c-icap.magic
|
|
|
|
BUILD_DEFS+= VARBASE
|
|
|
|
SUBST_CLASSES+= fix-path
|
|
SUBST_STAGE.fix-path= pre-configure
|
|
SUBST_MESSAGE.fix-path= Fixing paths.
|
|
SUBST_FILES.fix-path= c-icap.conf.in
|
|
SUBST_SED.fix-path= -e 's, @prefix@/var, ${VARBASE},g'
|
|
SUBST_SED.fix-path+= -e 's, /var, ${VARBASE},g'
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|