diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-08-20 19:50:44 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-08-20 19:50:44 +0000 |
commit | 5e61d98b707d2991ce74f39b7eb44c7455cdd261 (patch) | |
tree | e879d46b59c3fd4a45352910beb5fd93a5344534 /security/vlog | |
parent | Update to 0.94. This represents work by adamw, mezz, and (diff) |
BROKEN on 5.x: Does not compile with gcc 3.4.2
Notes
Notes:
svn path=/head/; revision=116824
Diffstat (limited to 'security/vlog')
-rw-r--r-- | security/vlog/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/vlog/Makefile b/security/vlog/Makefile index 268ac466e13f..538b7ac94ea9 100644 --- a/security/vlog/Makefile +++ b/security/vlog/Makefile @@ -26,8 +26,13 @@ USE_PERL5= yes MAN1= vlog.1 MANCOMPRESSED= no PLIST_FILES= bin/vlog +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 502125 +BROKEN= "Does not compile with gcc 3.4.2" +.endif post-patch: ${REINPLACE_CMD} -e "s@/usr/local@${PREFIX}@g" ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |