diff options
author | kris <kris@FreeBSD.org> | 2004-08-16 10:47:09 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-08-16 10:47:09 +0800 |
commit | fe73550fdbbd90c012ebc574160fcbd8a0386201 (patch) | |
tree | 4f4eb10988e1cd84fc171bfcc6f47908608a811b /graphics/nurbs++ | |
parent | e5d04d3f060d46a9bfac85f18b9262a287c64a4c (diff) | |
download | freebsd-ports-gnome-fe73550fdbbd90c012ebc574160fcbd8a0386201.tar.gz freebsd-ports-gnome-fe73550fdbbd90c012ebc574160fcbd8a0386201.tar.zst freebsd-ports-gnome-fe73550fdbbd90c012ebc574160fcbd8a0386201.zip |
BROKEN on 5.x: Does not compile with gcc 3.4.2
Diffstat (limited to 'graphics/nurbs++')
-rw-r--r-- | graphics/nurbs++/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/nurbs++/Makefile b/graphics/nurbs++/Makefile index c90845b4aecc..e76e614b6da3 100644 --- a/graphics/nurbs++/Makefile +++ b/graphics/nurbs++/Makefile @@ -22,8 +22,14 @@ INSTALLS_SHLIB= yes MAN1= nurbs++-config.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile with gcc 3.4.2" +.endif + pre-patch: @${REINPLACE_CMD} -e 's,<malloc.h>,<stdlib.h>,' \ ${WRKSRC}/nurbs/nurbs.cpp ${WRKSRC}/nurbs/nurbsS.cpp -.include <bsd.port.mk> +.include <bsd.port.post.mk> |