diff options
author | kris <kris@FreeBSD.org> | 2007-05-27 03:03:31 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2007-05-27 03:03:31 +0000 |
commit | 3ee20a81fbe38cbba4000ad893e1ac81e953f2eb (patch) | |
tree | 965567cbb664ce2d1956915bd4daa13e8e6e1241 /math/gambit | |
parent | 0ccd4067feff5266b8b5bc29943d9c4ca415e847 (diff) | |
download | FreeBSD-ports-3ee20a81fbe38cbba4000ad893e1ac81e953f2eb.zip FreeBSD-ports-3ee20a81fbe38cbba4000ad893e1ac81e953f2eb.tar.gz |
BROKEN with gcc 4.2
Diffstat (limited to 'math/gambit')
-rw-r--r-- | math/gambit/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/gambit/Makefile b/math/gambit/Makefile index 3d3fae6..01fb578 100644 --- a/math/gambit/Makefile +++ b/math/gambit/Makefile @@ -30,7 +30,13 @@ LDFLAGS= ${PTHREAD_LIBS} CFLAGS+= -O2 -fno-strict-aliasing .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + post-patch: @${REINPLACE_CMD} -e '/test/s|==|=|g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |