summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-2.0-devel/files/patch-i64442
blob: 53f08caeada5fb23a4a7869391ffe1724187775e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Index: jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
===================================================================
RCS file: /cvs/udk/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx,v
retrieving revision 1.7
diff -u -r1.7 gnujre.cxx
--- jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx	16 Mar 2006 13:13:00 -0000	1.7
+++ jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx	18 Apr 2006 21:50:36 -0000
@@ -67,8 +67,8 @@
           "/lib64/libgcj.so.7",
           "/lib64/libgcj.so.6"
 #else
-          "/lib/libgcj.so.7",
-          "/lib/libgcj.so.6"
+          "/libgcj.so.7",
+          "/libgcj.so.6"
 #endif
     };
     *size = sizeof(ar) / sizeof (char*);
@@ -87,7 +87,7 @@
     OUString sVersionProperty(
         RTL_CONSTASCII_USTRINGPARAM("java.version"));
     OUString sHomeProperty(
-        RTL_CONSTASCII_USTRINGPARAM("java.home"));
+        RTL_CONSTASCII_USTRINGPARAM("gnu.classpath.home.url"));
     OUString sAccessProperty(
         RTL_CONSTASCII_USTRINGPARAM("javax.accessibility.assistive_technologies"));
 
@@ -111,19 +111,8 @@
         }
         else if (!bHome && sHomeProperty.equals(i->first))
         {
-           OUString fileURL;
-           if (osl_getFileURLFromSystemPath(i->second.pData,& fileURL.pData) ==
-               osl_File_E_None)
-           {
-               //make sure that the drive letter have all the same case
-               //otherwise file:///c:/jre and file:///C:/jre produce two
-               //different objects!!!
-               if (makeDriveLetterSame( & fileURL))
-               {
-                   m_sHome = fileURL;
-                   bHome = true;
-               }
-           }
+          m_sHome = i->second;
+          bHome = true;
         }
         else if (!bAccess && sAccessProperty.equals(i->first))
         {