diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-19 04:58:36 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-19 04:58:36 +0000 |
commit | 6138980e885884ef96b726f695fb038e2b939935 (patch) | |
tree | 764c56a9a16e4175699ba9fd5cb45a9a3282fe46 /externals/grill/py/build | |
parent | 86ecf983a799e73b54a13616e5fda6b268c20e5e (diff) |
- a bit more functions for the symbol type
- exporting symbol functions
corrected argument passing to class methods
updated for OSX
adjust pd and py files for correct argument passing
svn path=/trunk/; revision=2523
Diffstat (limited to 'externals/grill/py/build')
-rw-r--r-- | externals/grill/py/build/gnumake-lnx-gcc.inc | 1 | ||||
-rw-r--r-- | externals/grill/py/build/gnumake-mac-gcc.inc | 5 | ||||
-rw-r--r-- | externals/grill/py/build/nmake-win-msvc.inc | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/externals/grill/py/build/gnumake-lnx-gcc.inc b/externals/grill/py/build/gnumake-lnx-gcc.inc index f12ec62e..bdb375f1 100644 --- a/externals/grill/py/build/gnumake-lnx-gcc.inc +++ b/externals/grill/py/build/gnumake-lnx-gcc.inc @@ -1,2 +1,3 @@ +DEFS += -DPY_EXPORTS INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION) LIBS += -lpython$(PYTHONVERSION) diff --git a/externals/grill/py/build/gnumake-mac-gcc.inc b/externals/grill/py/build/gnumake-mac-gcc.inc index 0e510dec..16e9df6f 100644 --- a/externals/grill/py/build/gnumake-mac-gcc.inc +++ b/externals/grill/py/build/gnumake-mac-gcc.inc @@ -1,4 +1,3 @@ -# - -LIBS += -framework Python
+DEFS += -DPY_EXPORTS +LIBS += -framework Python diff --git a/externals/grill/py/build/nmake-win-msvc.inc b/externals/grill/py/build/nmake-win-msvc.inc index 8748d223..373f98a7 100644 --- a/externals/grill/py/build/nmake-win-msvc.inc +++ b/externals/grill/py/build/nmake-win-msvc.inc @@ -1,2 +1,3 @@ +DEFS = $(DEFS) /DPY_EXPORTS INCPATH=/I$(PYTHONPATH)\include LIBPATH=/LIBPATH:$(PYTHONPATH)\libs |