diff options
author | kris <kris@FreeBSD.org> | 2004-08-20 19:50:44 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-08-20 19:50:44 +0000 |
commit | b012f8900a3923956a9f565f5478ba0db9bc41a4 (patch) | |
tree | b2be1ecc2aca57320f61b16ae2152ab30f4c1b24 /security/vlog | |
parent | 1546d10a2c5e0f9ba32a37bbef6b0e9c24d2866d (diff) | |
download | FreeBSD-ports-b012f8900a3923956a9f565f5478ba0db9bc41a4.zip FreeBSD-ports-b012f8900a3923956a9f565f5478ba0db9bc41a4.tar.gz |
BROKEN on 5.x: Does not compile with gcc 3.4.2
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 268ac46..538b7ac 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> |