|
From: Charles L. <cn...@us...> - 2009-02-12 18:03:20
|
Update of /cvsroot/hgengine/Mercury/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv1150 Modified Files: MercuryODE.cpp Log Message: Add the ODE-specific stuff for i386, we do need the static library at the moment. I think we should upgrade to 0.11, since they fixed some of the more common problems Index: MercuryODE.cpp =================================================================== RCS file: /cvsroot/hgengine/Mercury/src/MercuryODE.cpp,v retrieving revision 1.100 retrieving revision 1.101 diff -C2 -d -r1.100 -r1.101 *** MercuryODE.cpp 8 Feb 2009 23:24:51 -0000 1.100 --- MercuryODE.cpp 12 Feb 2009 18:03:13 -0000 1.101 *************** *** 12,15 **** --- 12,22 ---- #endif + #if ( defined( HAVE_ODE_STATIC ) && !defined( CPU_X86_64 ) ) + extern "C" + { + void dInitODE(); + } + #endif + #if defined(WIN32) && !defined(__GNUC__) #pragma comment(lib, "ode.lib") |