diff options
author | Wesley Shields <wxs@FreeBSD.org> | 2009-01-06 16:53:07 +0000 |
---|---|---|
committer | Wesley Shields <wxs@FreeBSD.org> | 2009-01-06 16:53:07 +0000 |
commit | 9168603ee2a4caf0184a678f8c87fd4c35b5309e (patch) | |
tree | beed789c375f11c48d387803bbb6f26ed98f78ab /www/squid31 | |
parent | 7d2247fbb14d14757e294626dc02ce359ccf9953 (diff) | |
download | ports-9168603ee2a4caf0184a678f8c87fd4c35b5309e.tar.gz ports-9168603ee2a4caf0184a678f8c87fd4c35b5309e.zip |
- Remove conditional checks for FreeBSD 5.x and older
Approved by: pav
Notes
Notes:
svn path=/head/; revision=225331
Diffstat (limited to 'www/squid31')
-rw-r--r-- | www/squid31/Makefile | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/www/squid31/Makefile b/www/squid31/Makefile index 0e62de8c8b20..4ec60e74d0c2 100644 --- a/www/squid31/Makefile +++ b/www/squid31/Makefile @@ -245,7 +245,7 @@ storage_schemes= ufs diskd null storage_schemes+= aufs # Only document switching from libpthread to libthr using libmap.conf # where lipthread is the default threading library: -.if (${OSVERSION} >= 501000) && (${OSVERSION} < 700041) +.if ${OSVERSION} < 700041 EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src-cf.data.pre.aufs .endif # Nil aufs threads is default, set any other value via SQUID_CONFIGURE_ARGS @@ -324,23 +324,10 @@ CONFIGURE_ARGS+= --enable-ipfw-transparent .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_ICAP) CONFIGURE_ARGS+= --enable-icap-client .endif |