diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-11-25 01:24:13 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-11-25 01:24:13 +0000 |
commit | 022234ed2ad9d963711ef05a1d94e325b9d08e2e (patch) | |
tree | f1f6e8e9d7ad6c52ab8d94bee882020ed7b62347 /www | |
parent | Mark as broken on 5.x: fails to compile (abort trap). There is no data (diff) |
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)
Notes
Notes:
svn path=/head/; revision=202834
Diffstat (limited to 'www')
-rw-r--r-- | www/havp/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/havp/Makefile b/www/havp/Makefile index 48efc3fd7b1d..fbe9b87519ac 100644 --- a/www/havp/Makefile +++ b/www/havp/Makefile @@ -37,6 +37,10 @@ OPTIONS= SSL "Enable SSL proxying (not scanned, only forwarded!)" on \ .include <bsd.port.pre.mk> +.if ${OSVERSION} < 600000 +BROKEN= Fails to compile: does not find pthread include file +.endif + .if defined(WITH_SSL) CONFIGURE_ARGS+= --enable-ssl-tunnel .else |