[PD-cvs] externals/grill/py/build gnumake-lnx-gcc.inc, 1.3, 1.4 gnumake-mac-gcc.inc, 1.3, 1.4 gnumake-win-cygwin.inc, 1.2, 1.3 nmake-win-msvc.inc, 1.4, 1.5

Thomas Grill xovo at users.sourceforge.net
Sat Jan 20 15:27:24 CET 2007


Update of /cvsroot/pure-data/externals/grill/py/build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3748/build

Modified Files:
	gnumake-lnx-gcc.inc gnumake-mac-gcc.inc gnumake-win-cygwin.inc 
	nmake-win-msvc.inc 
Log Message:
fixed rich comparison method in Symbol class
fix for OSX
small cosmetic fixes
enable compiled-only scripts (without .py)
small changes for numpy support
fix for numpy headers on OS X
fix for numpy
added xcode 2.4 project
added pyext._list and pyext._tuple to convert input lists to Python sequence objects
fix numpy et al
enable module packages (module/__init__.py[co]), now also for Max


Index: gnumake-mac-gcc.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/build/gnumake-mac-gcc.inc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** gnumake-mac-gcc.inc	9 Mar 2005 04:58:09 -0000	1.3
--- gnumake-mac-gcc.inc	20 Jan 2007 14:27:21 -0000	1.4
***************
*** 5,6 ****
--- 5,14 ----
  DEFS += -DPY_NUMARRAY
  endif
+ ifdef PY_NUMPY
+ DEFS += -DPY_NUMPY
+ INCPATH += -I/Library/Python/2.3/site-packages/numpy/core/include
+ endif
+ ifdef PY_NUMERIC
+ DEFS += -DPY_NUMERIC
+ endif
+ 

Index: gnumake-lnx-gcc.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/build/gnumake-lnx-gcc.inc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** gnumake-lnx-gcc.inc	9 Mar 2005 04:58:09 -0000	1.3
--- gnumake-lnx-gcc.inc	20 Jan 2007 14:27:21 -0000	1.4
***************
*** 5,7 ****
  ifdef PY_NUMARRAY
  DEFS += -DPY_NUMARRAY
! endif
\ No newline at end of file
--- 5,14 ----
  ifdef PY_NUMARRAY
  DEFS += -DPY_NUMARRAY
! endif
! ifdef PY_NUMPY
! DEFS += -DPY_NUMPY
! endif
! ifdef PY_NUMERIC
! DEFS += -DPY_NUMERIC
! endif
! 

Index: gnumake-win-cygwin.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/build/gnumake-win-cygwin.inc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** gnumake-win-cygwin.inc	11 Aug 2005 15:00:58 -0000	1.2
--- gnumake-win-cygwin.inc	20 Jan 2007 14:27:21 -0000	1.3
***************
*** 7,8 ****
--- 7,15 ----
  DEFS += -DPY_NUMARRAY
  endif
+ ifdef PY_NUMPY
+ DEFS += -DPY_NUMPY
+ endif
+ ifdef PY_NUMERIC
+ DEFS += -DPY_NUMERIC
+ endif
+ 

Index: nmake-win-msvc.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/build/nmake-win-msvc.inc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** nmake-win-msvc.inc	11 Aug 2005 15:00:58 -0000	1.4
--- nmake-win-msvc.inc	20 Jan 2007 14:27:21 -0000	1.5
***************
*** 7,8 ****
--- 7,16 ----
  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
+ 





More information about the Pd-cvs mailing list