diff options
author | maho <maho@FreeBSD.org> | 2004-05-11 02:25:13 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-05-11 02:25:13 +0800 |
commit | 88a8d86a4157e88596d26eb537c8d93d5b1b4683 (patch) | |
tree | d37731161a6d4033b8189b62a961ad602e168af9 | |
parent | 2bc16e5d48168b6947019f99b5e9d7e4b26178c0 (diff) | |
download | freebsd-ports-gnome-88a8d86a4157e88596d26eb537c8d93d5b1b4683.tar.gz freebsd-ports-gnome-88a8d86a4157e88596d26eb537c8d93d5b1b4683.tar.zst freebsd-ports-gnome-88a8d86a4157e88596d26eb537c8d93d5b1b4683.zip |
This version of octave-forge doens't compile any more with the
good old gcc-2.95. The newly introduced xmlread-stuff requires >gcc-3.x.
Maintainer doens't mark this port as broken, but set USE_GCC instead.
Suggested by: Kay Lehmann <kay_lehmann@web.de>
-rw-r--r-- | math/octave-forge/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/math/octave-forge/Makefile b/math/octave-forge/Makefile index ff464a52017c..5cd94aaa5dca 100644 --- a/math/octave-forge/Makefile +++ b/math/octave-forge/Makefile @@ -22,6 +22,14 @@ USE_GMAKE= yes GNU_CONFIGURE= yes ALL_TARGET= # empty USE_REINPLACE= yes +CONFIGURE_ARGS= --with-cc=${CC} \ + --with-cxx=${CXX} + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 501000 +USE_GCC=3.3 +.endif GNU_HOST= ${ARCH}-portbld-freebsd${OSREL} PLIST_SUB= OCTAVE_VERSION="`${LOCALBASE}/bin/octave-config -v`" GNU_HOST=${GNU_HOST} @@ -32,4 +40,4 @@ post-configure: @${REINPLACE_CMD} -e 's+%%LOCALBASE%%+${LOCALBASE}+g;' ${WRKSRC}/main/sparse/buildtests.sh @${REINPLACE_CMD} -e 's+#! /bin/sh+#! ${LOCALBASE}/bin/bash+g;' ${WRKSRC}/octinst.sh -.include <bsd.port.mk> +.include <bsd.port.post.mk> |