зеркало из https://github.com/mozilla/gecko-dev.git
Made JavaSession stuff conditional on LIVECONNECT.
This commit is contained in:
Родитель
2ea1c49ef3
Коммит
34a5003453
|
@ -28,8 +28,6 @@
|
|||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "JavaSession.h"
|
||||
|
||||
#include "prtypes.h"
|
||||
#include "prmacos.h"
|
||||
|
||||
|
@ -41,6 +39,10 @@ char* strdup(const char *str)
|
|||
return dup;
|
||||
}
|
||||
|
||||
#if defined(LIVECONNECT)
|
||||
|
||||
#include "JavaSession.h"
|
||||
|
||||
// Fake VM initialization
|
||||
|
||||
jint JNICALL JNI_GetDefaultJavaVMInitArgs(void* args)
|
||||
|
@ -99,3 +101,5 @@ jint JNICALL JNI_CreateJavaVM(JavaVM** outVM, JNIEnv ** outEnv, void* args)
|
|||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче