Index: /issm/trunk-jpl/configs/config-arm-linux.sh
===================================================================
--- /issm/trunk-jpl/configs/config-arm-linux.sh	(revision 15932)
+++ /issm/trunk-jpl/configs/config-arm-linux.sh	(revision 15933)
@@ -3,5 +3,5 @@
 ./configure \
    --prefix=$ISSM_DIR\
-   --libdir=$ISSM_DIR/src/mobile/android/ISSM_APP/libs/armeabi\
+   --libdir=$ISSM_DIR/../mobile/android/ISSM_APP/libs/armeabi\
    --build="i386-apple-darwin10.8.0"\
    --host="arm-linux-androideabi"\
Index: /issm/trunk-jpl/src/mobile/native/Main.cpp
===================================================================
--- /issm/trunk-jpl/src/mobile/native/Main.cpp	(revision 15932)
+++ /issm/trunk-jpl/src/mobile/native/Main.cpp	(revision 15933)
@@ -1,3 +1,3 @@
-#include "../../c/issm.h"
+#include "../../c/main/issm.h"
 #include <cstddef>
 #include <stdio.h>
@@ -22,9 +22,9 @@
 		int argc; //arguments to constructor.
 		char** argv = NULL;
-		COMM    communicator = 1; //fake communicator for constructor
 		const char* issmname = "issm.exe";
 		char *solution_type = NULL;
 		char *absfile = NULL;
 		char *relfile = NULL;
+		ISSM_MPI_Comm    comm=0;
 
 		/*log:*/
@@ -45,5 +45,5 @@
 		
 		/*call Model constructor passing in infile as File Descriptor parameter.*/
-		fm  = new FemModel(argc,argv,communicator);
+		fm  = new FemModel(argc,argv,comm);
 
 		/*we'll need the toolkits activated right away to use matrices: */
@@ -100,5 +100,5 @@
 		/*retrieve results: */
 		__android_log_print(ANDROID_LOG_INFO, "Native","Retrieving results ");
-		fm->elements->ProcessResultsUnits();
+		//fm->elements->ProcessResultsUnits(); we are now in SI units
 		patch=fm->elements->ResultsToPatch();
 
