diff --git a/Demos/AllBulletDemos/CMakeLists.txt b/Demos/AllBulletDemos/CMakeLists.txt index 3279f8130..51446ba87 100644 --- a/Demos/AllBulletDemos/CMakeLists.txt +++ b/Demos/AllBulletDemos/CMakeLists.txt @@ -42,9 +42,6 @@ SET(AllBulletDemos_SRCS ../ConvexDecompositionDemo/ConvexDecompositionDemo.cpp ../SliderConstraintDemo/SliderConstraintDemo.cpp ../RagdollDemo/RagdollDemo.cpp - ../FractureDemo/FractureDemo.cpp - ../FractureDemo/btFractureBody.cpp - ../FractureDemo/btFractureDynamicsWorld.cpp ../GimpactTestDemo/GimpactTestDemo.cpp ../Raytracer/Raytracer.cpp ../GjkConvexCastDemo/LinearConvexCastDemo.cpp diff --git a/Demos/AllBulletDemos/DemoEntries.cpp b/Demos/AllBulletDemos/DemoEntries.cpp index 87e848905..eb35f02c0 100644 --- a/Demos/AllBulletDemos/DemoEntries.cpp +++ b/Demos/AllBulletDemos/DemoEntries.cpp @@ -18,7 +18,6 @@ subject to the following restrictions: #include "../CcdPhysicsDemo/CcdPhysicsDemo.h" #include "../BspDemo/BspDemo.h" #include "../BasicDemo/BasicDemo.h" -#include "../FractureDemo/FractureDemo.h" #include "../ConcaveDemo/ConcaveDemo.h" #include "../ConcaveRaycastDemo/ConcaveRaycastDemo.h" #include "../ConcaveConvexcastDemo/ConcaveConvexcastDemo.h" @@ -108,7 +107,6 @@ public: btDemoEntry g_demoEntries[] = { // {"Box2dDemo",Box2dDemo::Create}, - {"FractureDemo",FractureDemo::Create}, {"ForkLift Demo",ForkLiftDemo::Create}, {"Dynamic Control Demo",MotorDemo::Create}, {"ConstraintDemo",ConstraintDemo::Create}, diff --git a/config.h.in b/config.h.in index 3da52c325..11b564d03 100644 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,8 @@ /* config.h.in. Generated from configure.ac by autoheader. */ +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* Architecture is PowerPC */ #undef ARCH_PPC @@ -54,6 +57,10 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O @@ -72,6 +79,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -90,6 +100,14 @@ /* Version number of package */ #undef VERSION -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif