Update of /cvsroot/pyode/pyode/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21925/src
Modified Files:
declarations.pyx
Log Message:
Check if ODE_BASE exists and don't scan the user-settings file anymore. This requires Pyrex 0.9.3 now.
Index: declarations.pyx
===================================================================
RCS file: /cvsroot/pyode/pyode/src/declarations.pyx,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** declarations.pyx 27 Jul 2004 15:19:03 -0000 1.6
--- declarations.pyx 29 Jul 2004 14:59:19 -0000 1.7
***************
*** 21,29 ****
# Include the basic floating point type -> dReal (either float or double)
! include "_precision.pyx"
cdef extern from "ode/ode.h":
!
# Dummy structs
cdef struct dxWorld:
--- 21,30 ----
# Include the basic floating point type -> dReal (either float or double)
! #include "_precision.pyx"
cdef extern from "ode/ode.h":
! ctypedef double dReal
!
# Dummy structs
cdef struct dxWorld:
|