diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 07:54:47 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 07:54:47 +0000 |
commit | e43831a81adb9d2bc41d0674fc85069205be832f (patch) | |
tree | a59e286624d732bac1282aad4c8575b9ba3a5101 /net/ns | |
parent | Mark broken with gcc4.2. Remove 4.x cruft. (diff) |
Mark as broken with gcc4.2 on 64-bit archs.
Notes
Notes:
svn path=/head/; revision=200511
Diffstat (limited to 'net/ns')
-rw-r--r-- | net/ns/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ns/Makefile b/net/ns/Makefile index 395ddcd7332c..307859707a47 100644 --- a/net/ns/Makefile +++ b/net/ns/Makefile @@ -31,6 +31,12 @@ ALL_TARGET= .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + post-patch: @${REINPLACE_CMD} -e 's|/usr/src/local/Tcl-1.0 \\|${LOCALBASE}/include/tclcl \\|g' \ -e 's|/usr/src/local/Tcl-1.0\"|${LOCALBASE}/lib\"|g' \ |