diff options
author | kris <kris@FreeBSD.org> | 2004-02-25 18:04:41 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-25 18:04:41 +0800 |
commit | f29bb40dc6c53ad63e81a635328b0139f9d406a2 (patch) | |
tree | 86084efe1f730cab9b7d9ad8729f80a2f4176355 /math | |
parent | 92ec3e73a20d8e1b96f5d66dce4a91b9a5c70f37 (diff) | |
download | freebsd-ports-gnome-f29bb40dc6c53ad63e81a635328b0139f9d406a2.tar.gz freebsd-ports-gnome-f29bb40dc6c53ad63e81a635328b0139f9d406a2.tar.zst freebsd-ports-gnome-f29bb40dc6c53ad63e81a635328b0139f9d406a2.zip |
BROKEN on alpha 5.x: Does not compile
Diffstat (limited to 'math')
-rw-r--r-- | math/scilab/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/scilab/Makefile b/math/scilab/Makefile index 94817ac0e636..2af8a827a285 100644 --- a/math/scilab/Makefile +++ b/math/scilab/Makefile @@ -44,6 +44,12 @@ CONFIGURE_ARGS= --with-tk \ CONFIGURE_ENV= PVM_ROOT=${PVM_ROOT} X11BASE=${X11BASE} MAKE_ENV= PVM_INCLUDE=${LOCALBASE}/include +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102 +BROKEN= "Does not compile on alpha 5.x" +.endif + post-patch: # malloc.h -> stdlib.h conversions ${GREP} -lr "<malloc.h>" ${WRKSRC} \ @@ -54,4 +60,4 @@ pre-install: ${FIND} ${WRKSRC} -name \*.orig -delete ${FIND} ${WRKSRC} -name \*.bak -delete -.include <bsd.port.mk> +.include <bsd.port.post.mk> |