From 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 1 Apr 2009 21:13:09 +0000 Subject: cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/ svn path=/trunk/; revision=10951 --- externals/grill/py/build/config-lnx.def | 17 ----------------- externals/grill/py/build/config-mac.def | 14 -------------- externals/grill/py/build/config-win.def | 17 ----------------- externals/grill/py/build/gnumake-lnx-gcc.inc | 21 --------------------- externals/grill/py/build/gnumake-mac-gcc.inc | 22 ---------------------- externals/grill/py/build/gnumake-win-cygwin.inc | 22 ---------------------- externals/grill/py/build/nmake-win-msvc.inc | 23 ----------------------- 7 files changed, 136 deletions(-) delete mode 100644 externals/grill/py/build/config-lnx.def delete mode 100644 externals/grill/py/build/config-mac.def delete mode 100644 externals/grill/py/build/config-win.def delete mode 100644 externals/grill/py/build/gnumake-lnx-gcc.inc delete mode 100644 externals/grill/py/build/gnumake-mac-gcc.inc delete mode 100644 externals/grill/py/build/gnumake-win-cygwin.inc delete mode 100644 externals/grill/py/build/nmake-win-msvc.inc (limited to 'externals/grill/py/build') 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 -- cgit v1.2.1