diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-02-27 08:46:34 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-02-27 08:46:34 +0000 |
commit | 233ecbece80749d0a26b16d3e2bebfdcbfa78908 (patch) | |
tree | 363f47e21c4fe1e5199d23cfcedf9ffca0d4210b /tools | |
parent | 65795cf11735c3711598fb987d3ef6b97fb00d21 (diff) |
INTEGRATION: CWS ia64port01_DEV300 (1.5.44); FILE MERGED
2008/02/21 13:32:27 cmc 1.5.44.2: #i84999# for linux at least warn if it happens again
2008/02/21 12:52:49 cmc 1.5.44.1: #i84999# missing DLLEXTENSION
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/solar.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/inc/tools/solar.h b/tools/inc/tools/solar.h index 19b4796c00b7..1fae5b315377 100644 --- a/tools/inc/tools/solar.h +++ b/tools/inc/tools/solar.h @@ -4,9 +4,9 @@ * * $RCSfile: solar.h,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2008-02-25 15:58:41 $ + * last change: $Author: obo $ $Date: 2008-02-27 09:46:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -388,6 +388,12 @@ template<typename T> inline T Abs(T a) { return (a>=0?a:-a); } #define __DLLEXTENSION "ls.so" #elif defined LINUX && defined __x86_64__ #define __DLLEXTENSION "lx.so" +#elif defined LINUX && defined MIPS + #define __DLLEXTENSION "lm.so" +#elif defined LINUX && defined IA64 + #define __DLLEXTENSION "la.so" +#elif defined LINUX + #error unknown plattform #elif defined FREEBSD && defined X86 #define __DLLEXTENSION "fi.so" #elif defined FREEBSD && defined X86_64 |