diff options
Diffstat (limited to 'externals/grill/py/build')
-rw-r--r-- | externals/grill/py/build/config-lnx.def | 8 | ||||
-rw-r--r-- | externals/grill/py/build/config-mac.def | 6 | ||||
-rw-r--r-- | externals/grill/py/build/config-win.def | 6 |
3 files changed, 13 insertions, 7 deletions
diff --git a/externals/grill/py/build/config-lnx.def b/externals/grill/py/build/config-lnx.def index e24f8b17..e19f03bc 100644 --- a/externals/grill/py/build/config-lnx.def +++ b/externals/grill/py/build/config-lnx.def @@ -2,8 +2,10 @@ PYTHONPREFIX=/usr # which Python version do you want to compile against? -PYTHONVERSION=2.3 +PYTHONVERSION=2.4 -# uncomment if numarray support should be compiled in -# for info about numarray see http://numeric.scipy.org +# uncomment if numpy/numarray/numeric support should be compiled in +# for info see http://numeric.scipy.org +PY_NUMPY=1 # PY_NUMARRAY=1 +# PY_NUMERIC=1 diff --git a/externals/grill/py/build/config-mac.def b/externals/grill/py/build/config-mac.def index 684c70b3..57f6e3d5 100644 --- a/externals/grill/py/build/config-mac.def +++ b/externals/grill/py/build/config-mac.def @@ -1,3 +1,5 @@ -# uncomment if numarray support should be compiled in -# for info about numarray see http://numeric.scipy.org +# uncomment if numpy/numarray/numeric support should be compiled in +# for info see http://numeric.scipy.org +PY_NUMPY=1 # PY_NUMARRAY=1 +# PY_NUMERIC=1 diff --git a/externals/grill/py/build/config-win.def b/externals/grill/py/build/config-win.def index 40ac5ff5..fee70e7b 100644 --- a/externals/grill/py/build/config-win.def +++ b/externals/grill/py/build/config-win.def @@ -4,6 +4,8 @@ PYTHONVER=24 # where is the Python installation? PYTHONPATH=%programfiles%/python$(PYTHONVER) -# uncomment if numarray support should be compiled in -# for info about numarray see http://numeric.scipy.org +# uncomment if numpy/numarray/numeric support should be compiled in +# for info see http://numeric.scipy.org +PY_NUMPY=1 # PY_NUMARRAY=1 +# PY_NUMERIC=1 |