diff options
author | linimon <linimon@FreeBSD.org> | 2007-11-25 09:24:13 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-11-25 09:24:13 +0800 |
commit | 0ac7d39af7430dad1e4dd93dca3ed895af453594 (patch) | |
tree | 148654db8774c14dcd135b08e9e556e64613f9e6 /security/squidclam | |
parent | 7b70df09543e9f3de3c2d181f70e8fc148a2cc34 (diff) | |
download | freebsd-ports-gnome-0ac7d39af7430dad1e4dd93dca3ed895af453594.tar.gz freebsd-ports-gnome-0ac7d39af7430dad1e4dd93dca3ed895af453594.tar.zst freebsd-ports-gnome-0ac7d39af7430dad1e4dd93dca3ed895af453594.zip |
Mark as broken on 5.x: fails to find pthread.h.
Something in the infrastructure changed in the late July timeframe that
actually caused this problem. The only major thing at that time was the
autoconf/libtool change, but I can't see how that could have caused this
failure mode. It only happens on 5.x; 6.x and 7.x are fine.
Approved by: portmgr (self)
Diffstat (limited to 'security/squidclam')
-rw-r--r-- | security/squidclam/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/security/squidclam/Makefile b/security/squidclam/Makefile index 514f4872abf0..54362535f83f 100644 --- a/security/squidclam/Makefile +++ b/security/squidclam/Makefile @@ -31,6 +31,11 @@ PLIST_FILES= bin/squidclam %%EXAMPLESDIR%%/squidclam.conf PLIST_DIRS= %%EXAMPLESDIR%% .include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600000 +BROKEN= Fails to compile: does not find pthread include file +.endif + post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ -e 's|%%PREFIX%%|${PREFIX}|g' \ |