diff options
author | maho <maho@FreeBSD.org> | 2008-01-07 09:31:24 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2008-01-07 09:31:24 +0800 |
commit | efe80c593d048097f8d28ac2899d3439d1e13a4c (patch) | |
tree | 11c9b4406dc5f64a3171d5e36579cafe95d0acc1 /math | |
parent | cafa1e7b98915f284fc5ee9f929b028d3267d4bf (diff) | |
download | freebsd-ports-gnome-efe80c593d048097f8d28ac2899d3439d1e13a4c.tar.gz freebsd-ports-gnome-efe80c593d048097f8d28ac2899d3439d1e13a4c.tar.zst freebsd-ports-gnome-efe80c593d048097f8d28ac2899d3439d1e13a4c.zip |
* Use termios terminal interface, so that COMPAT_43TTY kernel
option can be removed without strange side-effects [1].
* portlint (partially)
Submitted by: Ed Schouten <ed@fxq.nl> [1]
Diffstat (limited to 'math')
-rw-r--r-- | math/octave-devel/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/octave-devel/Makefile b/math/octave-devel/Makefile index 7afa3ec07d35..58e895672db7 100644 --- a/math/octave-devel/Makefile +++ b/math/octave-devel/Makefile @@ -16,7 +16,7 @@ PKGNAMESUFFIX= -devel MAINTAINER= maho@FreeBSD.org COMMENT= Developer's version of math/octave -IGNORE= Please use math/octave instead. +IGNORE= please use math/octave instead BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot \ ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \ @@ -81,7 +81,8 @@ CONFIGURE_ENV+= GPERF="${LOCALBASE}/bin/gperf" \ F77="${FC}" \ FFLAGS="${FFLAGS}" \ CC="${CC}" \ - CXX="${CXX}" + CXX="${CXX}" \ + TERMIOS_H="termios.h" CONFIGURE_ARGS= --host=${GNU_HOST} \ --with-blas="-L${LOCALBASE}/lib ${BLAS}" \ --with-lapack="${LAPACK}" \ |