[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - jvmfwk/distributions jvmfwk/plugins

Stephan Bergmann sbergman at redhat.com
Mon Jun 1 13:37:55 PDT 2015


 jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml  |    3 +++
 jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml |    5 ++++-
 jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx            |    3 ++-
 3 files changed, 9 insertions(+), 2 deletions(-)

New commits:
commit ee6f1584e4fe2691a428d30ecd08fd371dec0e62
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri May 29 14:25:23 2015 +0200

    Support Azul Zulu JRE on Linux and Mac OS X, too
    
    Change-Id: I317506319b91daf006a0ba79874ff265ba6ed4da
    (cherry picked from commit 8541b178f4155c8d72a876245433a1aaf3d2634f)
    Reviewed-on: https://gerrit.libreoffice.org/15972
    Reviewed-by: Michael Stahl <mstahl at redhat.com>
    Tested-by: Michael Stahl <mstahl at redhat.com>

diff --git a/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml b/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml
index 1c8c8bd..943b2ce 100644
--- a/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml
+++ b/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml
@@ -41,6 +41,9 @@
   <vendor name="BEA Systems, Inc.">
     <minVersion>1.5.0</minVersion>
   </vendor>
+  <vendor name="Azul Systems, Inc.">
+    <minVersion>1.6.0</minVersion>
+  </vendor>
  </vendorInfos>
 
 </javaSelection>
diff --git a/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml b/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml
index e2925ee..ee5d093 100644
--- a/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml
+++ b/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml
@@ -32,6 +32,9 @@
  <vendor name="Oracle Corporation">
   <minVersion>1.7.0</minVersion>
  </vendor>
- </vendorInfos>
+ <vendor name="Azul Systems, Inc.">
+  <minVersion>1.6.0</minVersion>
+ </vendor>
+</vendorInfos>
 
 </javaSelection>
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx b/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
index 07f9c0c..549f7d5 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
@@ -58,7 +58,8 @@ char const* const* OtherInfo::getRuntimePaths(int * size)
     "/bin/jrockit/jvm.dll"
 #elif defined UNX
 #ifdef MACOSX
-        "/../../../../../Frameworks/JavaVM.framework/JavaVM"  //as of  1.6.0_22
+        "/../../../../../Frameworks/JavaVM.framework/JavaVM", //as of  1.6.0_22
+        "/lib/server/libjvm.dylib" // needed by Azul
 #else
         "/lib/" JFW_PLUGIN_ARCH "/client/libjvm.so", // for Blackdown PPC
         "/lib/" JFW_PLUGIN_ARCH "/server/libjvm.so", // for Blackdown AMD64


More information about the Libreoffice-commits mailing list