diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:24:01 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:24:01 +0000 |
commit | fb685c66c6e363dd75dc71bdf9192b7c6e47d7e4 (patch) | |
tree | 6987601f209137b21d750d2c8342b1ee2298b82d /jvmfwk/plugins | |
parent | 0baecef77a8f8a302a05d319742e636cb3938590 (diff) |
INTEGRATION: CWS mipselport01 (1.7.20); FILE MERGED
2007/10/26 12:50:26 cmc 1.7.20.1: #i81486# MIPS jvmfwk patch
Diffstat (limited to 'jvmfwk/plugins')
-rw-r--r-- | jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx b/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx index 1f559aeb0769..7e20efd38a12 100644 --- a/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx +++ b/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx @@ -4,9 +4,9 @@ * * $RCSfile: vendorbase.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: kz $ $Date: 2007-06-18 16:36:53 $ + * last change: $Author: hr $ $Date: 2007-11-02 15:24:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -38,6 +38,7 @@ #include "rtl/ustring.hxx" #include "rtl/ref.hxx" +#include "osl/endian.h" #include "salhelper/simplereferenceobject.hxx" #include <vector> @@ -55,7 +56,11 @@ namespace jfw_plugin #elif defined POWERPC #define JFW_PLUGIN_ARCH "ppc" #elif defined MIPS -#define JFW_PLUGIN_ARCH "mips" +#ifdef OSL_BIGENDIAN +# define JFW_PLUGIN_ARCH "mips" +#else +# define JFW_PLUGIN_ARCH "mips32" +#endif #elif defined S390 #define JFW_PLUGIN_ARCH "s390" #elif defined X86_64 |