diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
commit | 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 (patch) | |
tree | 5c67818b38a5cc2f9caa5ca7f8640ca356adf02b /externals/grill/py/build | |
parent | bb4c7f6a245394d09dac9adfb2efb093d3d98452 (diff) |
cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/
svn path=/trunk/; revision=10951
Diffstat (limited to 'externals/grill/py/build')
-rw-r--r-- | externals/grill/py/build/config-lnx.def | 17 | ||||
-rw-r--r-- | externals/grill/py/build/config-mac.def | 14 | ||||
-rw-r--r-- | externals/grill/py/build/config-win.def | 17 | ||||
-rw-r--r-- | externals/grill/py/build/gnumake-lnx-gcc.inc | 21 | ||||
-rw-r--r-- | externals/grill/py/build/gnumake-mac-gcc.inc | 22 | ||||
-rw-r--r-- | externals/grill/py/build/gnumake-win-cygwin.inc | 22 | ||||
-rw-r--r-- | externals/grill/py/build/nmake-win-msvc.inc | 23 |
7 files changed, 0 insertions, 136 deletions
diff --git a/externals/grill/py/build/config-lnx.def b/externals/grill/py/build/config-lnx.def deleted file mode 100644 index 86477fcc..00000000 --- a/externals/grill/py/build/config-lnx.def +++ /dev/null @@ -1,17 +0,0 @@ -# what is the base prefix of the Python installation? -PYTHONPREFIX=/usr - -# which Python version do you want to compile against? -PYTHONVERSION=2.4 - -# 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 - -# use thread-safe GIL functionality (do this for python version >= 2.3!) -PY_USE_GIL=1 - -# use inofficial (pure data) functionality -# PY_USE_INOFFICIAL=1 diff --git a/externals/grill/py/build/config-mac.def b/externals/grill/py/build/config-mac.def deleted file mode 100644 index 3ecd7219..00000000 --- a/externals/grill/py/build/config-mac.def +++ /dev/null @@ -1,14 +0,0 @@ -# which major python version? -PYTHONVER=23 - -# 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 - -# use thread-safe GIL functionality (do this for python version >= 2.3!) -PY_USE_GIL=1 - -# use inofficial (pure data) functionality -# PY_USE_INOFFICIAL=1 diff --git a/externals/grill/py/build/config-win.def b/externals/grill/py/build/config-win.def deleted file mode 100644 index 9c81bf35..00000000 --- a/externals/grill/py/build/config-win.def +++ /dev/null @@ -1,17 +0,0 @@ -# which major python version? -PYTHONVER=24 - -# where is the Python installation? -PYTHONPATH=%programfiles%/python$(PYTHONVER) - -# 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 - -# use thread-safe GIL functionality (do this for python version >= 2.3!) -PY_USE_GIL=1 - -# use inofficial (pure data) functionality -# PY_USE_INOFFICIAL=1 diff --git a/externals/grill/py/build/gnumake-lnx-gcc.inc b/externals/grill/py/build/gnumake-lnx-gcc.inc deleted file mode 100644 index 7bbde1f0..00000000 --- a/externals/grill/py/build/gnumake-lnx-gcc.inc +++ /dev/null @@ -1,21 +0,0 @@ -DEFS += -DPY_EXPORTS -INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION) -LIBS += -lpython$(PYTHONVERSION) - -ifdef PY_NUMARRAY -DEFS += -DPY_NUMARRAY -endif -ifdef PY_NUMPY -DEFS += -DPY_NUMPY -endif -ifdef PY_NUMERIC -DEFS += -DPY_NUMERIC -endif - -ifdef PY_USE_GIL -DEFS += -DPY_USE_GIL -endif - -ifdef PY_USE_INOFFICIAL -DEFS += -DPY_USE_INOFFICIAL -endif diff --git a/externals/grill/py/build/gnumake-mac-gcc.inc b/externals/grill/py/build/gnumake-mac-gcc.inc deleted file mode 100644 index d077c84e..00000000 --- a/externals/grill/py/build/gnumake-mac-gcc.inc +++ /dev/null @@ -1,22 +0,0 @@ -DEFS += -DPY_EXPORTS -LIBS += -F/Library/Frameworks -framework Python - -ifdef PY_NUMARRAY -DEFS += -DPY_NUMARRAY -endif -ifdef PY_NUMPY -DEFS += -DPY_NUMPY -INCPATH += -I/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/numpy/core/include -#INCPATH += -F/System/Library/Frameworks -I/Library/Python/2.3/site-packages/numpy/core/include -endif -ifdef PY_NUMERIC -DEFS += -DPY_NUMERIC -endif - -ifdef PY_USE_GIL -DEFS += -DPY_USE_GIL -endif - -ifdef PY_USE_INOFFICIAL -DEFS += -DPY_USE_INOFFICIAL -endif diff --git a/externals/grill/py/build/gnumake-win-cygwin.inc b/externals/grill/py/build/gnumake-win-cygwin.inc deleted file mode 100644 index a64fd9e1..00000000 --- a/externals/grill/py/build/gnumake-win-cygwin.inc +++ /dev/null @@ -1,22 +0,0 @@ -DEFS += -DPY_EXPORTS -INCPATH += -I$(PYTHONPATH)/include -LIBPATH += -L$(PYTHONPATH)/libs -LIBS += -lpython$(PYTHONVER) -lshell32 - -ifdef PY_NUMARRAY -DEFS += -DPY_NUMARRAY -endif -ifdef PY_NUMPY -DEFS += -DPY_NUMPY -endif -ifdef PY_NUMERIC -DEFS += -DPY_NUMERIC -endif - -ifdef PY_USE_GIL -DEFS += -DPY_USE_GIL -endif - -ifdef PY_USE_INOFFICIAL -DEFS += -DPY_USE_INOFFICIAL -endif diff --git a/externals/grill/py/build/nmake-win-msvc.inc b/externals/grill/py/build/nmake-win-msvc.inc deleted file mode 100644 index 7cf0d04d..00000000 --- a/externals/grill/py/build/nmake-win-msvc.inc +++ /dev/null @@ -1,23 +0,0 @@ -DEFS = $(DEFS) /DPY_EXPORTS -INCPATH=/I$(PYTHONPATH)\include -LIBPATH=/LIBPATH:$(PYTHONPATH)\libs -LIBS=$(LIBS) shell32.lib - -!ifdef PY_NUMARRAY -DEFS = $(DEFS) /DPY_NUMARRAY -!endif -!ifdef PY_NUMPY -INCPATH=$(INCPATH) /I$(PYTHONPATH)\Lib\site-packages\numpy\core\include -DEFS = $(DEFS) /DPY_NUMPY -!endif -!ifdef PY_NUMERIC -DEFS = $(DEFS) /DPY_NUMERIC -!endif - -!ifdef PY_USE_GIL -DEFS = $(DEFS) /DPY_USE_GIL -!endif - -!ifdef PY_USE_INOFFICIAL -DEFS = $(DEFS) /DPY_USE_INOFFICIAL -!endif |