diff options
author | tron <tron@pkgsrc.org> | 1999-05-02 00:48:31 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-05-02 00:48:31 +0000 |
commit | b83f445f4ac95e558128a7424ed690783a9a8cf1 (patch) | |
tree | d6882fd141ab7114a448f046f1a52b3fd63c7ceb | |
parent | ee064857f5d2fe28278310c6aa4a22017aac019f (diff) | |
download | pkgsrc-b83f445f4ac95e558128a7424ed690783a9a8cf1.tar.gz |
Enable transport proxy support. Fixes PR pkg/7383 by Olaf Seibert.
-rw-r--r-- | www/squid/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/squid/Makefile b/www/squid/Makefile index 4335e58f2af..eca7ddf0186 100644 --- a/www/squid/Makefile +++ b/www/squid/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 1999/04/09 17:54:26 bad Exp $ +# $NetBSD: Makefile,v 1.9 1999/05/02 00:48:31 tron Exp $ # DISTNAME= squid-2.0.PATCH2 @@ -24,8 +24,13 @@ CONFIGURE_ARGS= --sysconfdir=/etc \ # Options you might want to enable CONFIGURE_ARGS+= --enable-cachemgr-hostname=localhost CONFIGURE_ARGS+= --enable-icmp +CONFIGURE_ARGS+= --enable-ipf-transparent #CONFIGURE_ARGS+= --enable-snmp -CONFIGURE_ENV+= PERL=${LOCALBASE}/bin/perl + +CPPFLAGS= -I/usr/include/netinet +CFLAGS+= ${CPPFLAGS} +CONFIGURE_ENV+= CPPFLAGS=${CPPFLAGS} \ + PERL=${LOCALBASE}/bin/perl MAKEFILE= makefile MAKE_ENV+= INSTALL_SCRIPT="${INSTALL_SCRIPT}" PKG_PREFIX="${PREFIX}" |