diff options
author | peter <peter@FreeBSD.org> | 1998-02-08 11:39:06 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-02-08 11:39:06 +0800 |
commit | 21070122e8d4417946c22b9a1733011a21f674e4 (patch) | |
tree | 6a686fa521d05488ae2d23f416f08b9ffe640c0c /www/squid24/Makefile | |
parent | f2dc05f406fa754ac64a26d62bb008390136adc9 (diff) | |
download | freebsd-ports-gnome-21070122e8d4417946c22b9a1733011a21f674e4.tar.gz freebsd-ports-gnome-21070122e8d4417946c22b9a1733011a21f674e4.tar.zst freebsd-ports-gnome-21070122e8d4417946c22b9a1733011a21f674e4.zip |
Evan sent me a port update moments after I committed one. Pick out some
of the changes he's made.. (Although I'm not so sure about moving the
cache to /var/spool/squid...)
Reviewed by: Evan Champion <evanc@synapse.net>
Diffstat (limited to 'www/squid24/Makefile')
-rw-r--r-- | www/squid24/Makefile | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/www/squid24/Makefile b/www/squid24/Makefile index 9d78206655b7..b1a71f36f5f6 100644 --- a/www/squid24/Makefile +++ b/www/squid24/Makefile @@ -3,7 +3,7 @@ # Date created: Thu Nov 7 00:53:18 WST 1996 # Whom: Peter Wemm <peter@freebsd.org> # -# $Id: Makefile,v 1.38 1998/01/21 03:06:06 peter Exp $ +# $Id: Makefile,v 1.39 1998/02/08 03:04:58 peter Exp $ # DISTNAME= squid-1.2.beta14 @@ -24,19 +24,27 @@ MAINTAINER= peter@freebsd.org DIST_SUBDIR= squid1.2b14 GNU_CONFIGURE= yes # Follow the apache port's lead... -CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/squid --bindir=${PREFIX}/sbin \ - --libexecdir=${PREFIX}/sbin --localstatedir=${PREFIX}/squid +CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ + --localstatedir=${PREFIX}/squid STRIP= # won't install scripts correctly othervise. MAKEFILE= makefile # Some other configure options.. -# - Use ASYNC disk I/O (Requires real pthreads, libc_r probably doesn't work) -#CONFIGURE_ARGS+= --enable-async-io # - Compile and use the malloc package from Doug Lea #CONFIGURE_ARGS+= --enable-dlmalloc +# - Compile and use the supplied GNUregex routines instead of BSD regex. +#CONFIGURE_ARGS+= --enable-gnuregex # - Use tree function to store ACL lists #CONFIGURE_ARGS+= --enable-acltree=bin #CONFIGURE_ARGS+= --enable-acltree=splay +# - Enable simple malloc debugging +#CONFIGURE_ARGS+= --enable-xmalloc-debug +# - Detailed trace of memory allocations +#CONFIGURE_ARGS+= --enable-xmalloc-debug-count +# - Show malloc statistics in cachemgr status pages +#CONFIGURE_ARGS+= --enable-xmalloc-statistics +# - Use ASYNC disk I/O (Requires real pthreads, libc_r probably doesn't work) +#CONFIGURE_ARGS+= --enable-async-io # - Enable ICMP pinging for heirarchy stats and selection #CONFIGURE_ARGS+= --enable-icmp # - Enable delay hack to limit bandwidth usage @@ -54,12 +62,6 @@ MAKEFILE= makefile # - Enable ACL based on ethernet address (eg: for machines with dynamic DHCP # assigned IP addresses) #CONFIGURE_ARGS+= --enable-arp-acl -# - Enable simple malloc debugging -#CONFIGURE_ARGS+= --enable-xmalloc-debug -# - Detailed trace of memory allocations -#CONFIGURE_ARGS+= --enable-xmalloc-debug-count -# - Show malloc statistics in cachemgr status pages -#CONFIGURE_ARGS+= --enable-xmalloc-statistics post-install: cd ${WRKSRC}/src; make install-pinger |