diff options
author | chuckr <chuckr@FreeBSD.org> | 1998-05-20 02:17:20 +0000 |
---|---|---|
committer | chuckr <chuckr@FreeBSD.org> | 1998-05-20 02:17:20 +0000 |
commit | ed40c0857c42d6b1dac9a3d1fe9ec86bfd2efda4 (patch) | |
tree | 2b5fff6780a3e60f0e1e73897fcc0d43277d2e9e /math/octave/Makefile | |
parent | 5d7d5c7a46bce6b7aa5c61547bc494f9d9954dc6 (diff) | |
download | FreeBSD-ports-ed40c0857c42d6b1dac9a3d1fe9ec86bfd2efda4.zip FreeBSD-ports-ed40c0857c42d6b1dac9a3d1fe9ec86bfd2efda4.tar.gz |
Fix nasty template-instantiation problem that, while it compiled,
prevented it from running. The only fix (until FreeBSD goes elf)
is to build the executeable statically. I really dislike that, but
it's a linker problem that's not likely to be fixed.
Much thanks to Victor Balden <victor@eng.uct.ac.za> for pointing
me at this bug.
Diffstat (limited to 'math/octave/Makefile')
-rw-r--r-- | math/octave/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index ddf8da5..9b7bde6 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -3,7 +3,7 @@ # Date created: 19 April 1998 # Whom: chuckr@freebsd.org # -# $Id: Makefile,v 1.13 1998/05/05 20:37:57 chuckr Exp $ +# $Id: Makefile,v 1.14 1998/05/15 18:44:53 chuckr Exp $ # DISTNAME= octave-2.0.12 @@ -16,14 +16,15 @@ RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot HAS_CONFIGURE= yes CONFIGURE_ENV= ${SETENV} "INSTALL_DATA=$(INSTALL_DATA)" "INSTALL_PROGRAM=$(INSTALL_SCRIPT)" -CONFIGURE_ARGS= --prefix=${PREFIX} --exec-prefix=${PREFIX} --with-f2c --enable-shared --host=i386-unknown-freebsd +CONFIGURE_ARGS= --prefix=${PREFIX} --exec-prefix=${PREFIX} --with-f2c --disable-shared --host=i386-unknown-freebsd USE_GMAKE= yes MAN1= octave.1 -BROKEN= "core dump problem on startup, working on it." - LIBOCTAVE-INFO= liboctave.info liboctave.info-1 liboctave.info-2 liboctave.info-3 +post-build: + /usr/bin/strip $(WRKSRC)/src/octave + post-install: .ifndef NOPORTDOCS install-info --defentry='* Octave: (octave). Interactive language for numerical computations.' $(WRKSRC)/doc/interpreter/octave.info $(PREFIX)/info/dir @@ -43,6 +44,5 @@ post-install: $(RM) -rf $(PREFIX)/libexec/octave/site/oct/i386-unknown-freebsd? $(RM) -rf $(PREFIX)/libexec/octave/site/exec/i386-unknown-freebsd? .endif - ${LDCONFIG} -m $(PREFIX)/lib .include <bsd.port.mk> |