+ add dummy getcwd/getenv for PS3 compatibility
+ disable HAVE_SIGNAL_H 0 for LibXML + removed unused variable in btCollisionWorld + removed unused variable in btSequentialImpulseConstraintSolver
This commit is contained in:
@@ -46,7 +46,19 @@ subject to the following restrictions:
|
||||
#define snprintf _snprintf
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __CELLOS_LV2__
|
||||
//provide some dummy stubs for getcwd and getenv on PS3
|
||||
extern "C" {
|
||||
int getcwd(char* dir, int maxlen)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
int getenv(int bla)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
struct btRigidBodyInput
|
||||
|
||||
Reference in New Issue
Block a user