- make 64bit default for native libraries (e.g. libbulletjme32.so for 32bit)

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7411 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-05-03 16:01:27 +00:00
parent 73517c1c52
commit 4bb937b155

View File

@ -151,7 +151,7 @@ public class Natives {
extractNativeLib("windows", "jinput-raw_64");
}
if(needNativeBullet){
extractNativeLib("windows", "bulletjme_64");
extractNativeLib("windows", "bulletjme");
}
break;
case Windows32:
@ -166,7 +166,7 @@ public class Natives {
extractNativeLib("windows", "jinput-raw");
}
if(needNativeBullet){
extractNativeLib("windows", "bulletjme");
extractNativeLib("windows", "bulletjme64");
}
break;
case Linux64:
@ -180,7 +180,7 @@ public class Natives {
extractNativeLib("linux", "openal64");
}
if(needNativeBullet){
extractNativeLib("linux", "bulletjme64");
extractNativeLib("linux", "bulletjme");
}
break;
case Linux32:
@ -194,7 +194,7 @@ public class Natives {
extractNativeLib("linux", "openal");
}
if(needNativeBullet){
extractNativeLib("linux", "bulletjme");
extractNativeLib("linux", "bulletjme32");
}
break;
case MacOSX_PPC32: