summaryrefslogtreecommitdiff
path: root/math/octave/octave.mk
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2008-01-11 01:23:43 +0000
committeradam <adam@pkgsrc.org>2008-01-11 01:23:43 +0000
commit2ba7f5e00fc9c0bebc82ac09428952525ed8bd19 (patch)
treeaa53ff62e4b06764e5b4fe89788575aa585805ae /math/octave/octave.mk
parentb5c2daa43ef1877a7175998dc892467e9269f6f0 (diff)
downloadpkgsrc-2ba7f5e00fc9c0bebc82ac09428952525ed8bd19.tar.gz
Changes 3.0.0:
* Compatibility with Matlab graphics is much better now. We now have some graphics features that work like Matlab's Handle Graphics (tm): * The way Octave handles search paths has changed. * Previous versions of Octave had a number of built-in variables to control warnings (for example, warn_divide_by_zero). These variables have been replaced by warning identifiers that are used with the warning function to control the state of warnings. * All built-in variables have been converted to functions. * For compatibility with Matlab, the output order of Octave's "system" function has changed. * For compatibility with Matlab, the output of Octave's fsolve function has been changed. * For compatibility with Matlab, normcdf, norminv, normpdf, and normrnd have been modified to compute distributions using the standard deviation instead of the variance. * For compatibility with Matlab, gamcdf, gaminv, gampdf, gamrnd, expcdf, expinv, exppdf and exprnd have been modified to compute the distributions using the standard scale factor rather than one over the scale factor.
Diffstat (limited to 'math/octave/octave.mk')
-rw-r--r--math/octave/octave.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/math/octave/octave.mk b/math/octave/octave.mk
index 7ffcdaaac46..cbad90d57ab 100644
--- a/math/octave/octave.mk
+++ b/math/octave/octave.mk
@@ -1,4 +1,4 @@
-# $NetBSD: octave.mk,v 1.5 2006/07/10 22:59:26 jlam Exp $
+# $NetBSD: octave.mk,v 1.6 2008/01/11 01:23:43 adam Exp $
.include "../../mk/bsd.prefs.mk"
@@ -10,9 +10,9 @@ OCTAVE_VARS?= LOCALVERFCNFILEDIR LOCALVEROCTFILEDIR LOCALVERARCHLIBDIR VERSION
# Set OCT_<var> to the value of <var> as returned by octave-config.
.if exists(${OCTAVE_CONFIG})
-. for _var_ in ${OCTAVE_VARS}
-. if !defined(OCT_${_var_})
-OCT_${_var_}!= ${OCTAVE_CONFIG} -p ${_var_}
+. for var in ${OCTAVE_VARS}
+. if !defined(OCT_${var})
+OCT_${var}!= ${OCTAVE_CONFIG} -p ${var}
. endif
. endfor
.endif