|
From: <kw...@us...> - 2006-04-04 17:59:25
|
Revision: 912 Author: kwizatz Date: 2006-04-04 10:59:08 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/opende/?rev=912&view=rev Log Message: ----------- Added CHANGELOG note for Convex stuff, changed the help on configure from --with-opcode to --without-opcode. Modified Paths: -------------- trunk/CHANGELOG.txt trunk/configure.in Modified: trunk/CHANGELOG.txt =================================================================== --- trunk/CHANGELOG.txt 2006-04-04 17:45:53 UTC (rev 911) +++ trunk/CHANGELOG.txt 2006-04-04 17:59:08 UTC (rev 912) @@ -9,6 +9,11 @@ ------------------------------------------------------------------------------ +04/03/06 rodrigo + + * Added Convex primitive collision code, + currently only convex-sphere and convex-plane work + 04/01/06 bram * Added program to test trimesh vs sphere: ode/test/test_basket Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2006-04-04 17:45:53 UTC (rev 911) +++ trunk/configure.in 2006-04-04 17:59:08 UTC (rev 912) @@ -59,8 +59,8 @@ AC_CHECK_HEADERS( alloca.h ieeefp.h stdio.h stdlib.h math.h string.h stdarg.h malloc.h values.h float.h time.h sys/time.h ) AC_MSG_CHECKING(if OPCODE support is requested) -AC_ARG_WITH(opcode,AC_HELP_STRING([--with-opcode], -[Configure ODE to work with the OPCODE collision detection library for trimesh support]), +AC_ARG_WITH(opcode,AC_HELP_STRING([--without-opcode], +[Configure ODE to work without OPCODE (disables trimesh support)]), opcode=$withval,opcode=yes) AC_MSG_RESULT($opcode) AM_CONDITIONAL(OPCODE, test x$opcode = xyes) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |