summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-22 15:56:22 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-22 15:56:22 +0000
commit311adf5d3c971d224505d920aca441c8763508ab (patch)
tree06f75416cb958d6a5baf27662d1196d7eb77b21b /jvmfwk
parentd7a40bcab8c671eb4b9ce6ba2b9a66e2667f1b41 (diff)
INTEGRATION: CWS os2port03 (1.8.18); FILE MERGED
2008/07/16 12:25:32 obr 1.8.18.2: RESYNC: (1.8-1.9); FILE MERGED 2008/01/14 16:56:58 ydario 1.8.18.1: os2 needs different order for dll. Issue number:i85203 Submitted by:ydario
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx b/jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx
index a821894ac..71d47deba 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: sunjre.cxx,v $
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -68,10 +68,14 @@ char const* const* SunInfo::getJavaExePaths(int * size)
char const* const* SunInfo::getRuntimePaths(int * size)
{
static char const* ar[]= {
-#if defined(WNT) || defined(OS2)
+#if defined(WNT)
"/bin/client/jvm.dll",
"/bin/hotspot/jvm.dll",
"/bin/classic/jvm.dll"
+#elif defined(OS2)
+ "/bin/classic/jvm.dll",
+ "/bin/client/jvm.dll",
+ "/bin/hotspot/jvm.dll"
#elif UNX
"/lib/" JFW_PLUGIN_ARCH "/client/libjvm.so",
"/lib/" JFW_PLUGIN_ARCH "/server/libjvm.so",