diff options
author | Patrick Luby <pluby@openoffice.org> | 2001-02-12 02:30:53 +0000 |
---|---|---|
committer | Patrick Luby <pluby@openoffice.org> | 2001-02-12 02:30:53 +0000 |
commit | 390e9fa9e5cb66137466f17b9b72e808d555ceaa (patch) | |
tree | 7a535ba2e5b83ad521fc4aa8625caa144b1aeed6 /stoc/test/testintrosp.cxx | |
parent | 9ee09f88d779084c715b7a4235eebc02b5b43469 (diff) |
Update test files for Mac OS X
Diffstat (limited to 'stoc/test/testintrosp.cxx')
-rw-r--r-- | stoc/test/testintrosp.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/stoc/test/testintrosp.cxx b/stoc/test/testintrosp.cxx index 703837792cc9..2639341cabcc 100644 --- a/stoc/test/testintrosp.cxx +++ b/stoc/test/testintrosp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testintrosp.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dbo $ $Date: 2000-11-08 09:36:19 $ + * last change: $Author: pluby $ $Date: 2001-02-12 03:30:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1598,8 +1598,12 @@ int __cdecl main( int argc, char * argv[] ) #ifdef SAL_W32 libName = OUString::createFromAscii("corefl.dll"); #else +#ifdef MACOSX + libName = OUString::createFromAscii("libcorefl.dylib.framework"); +#else libName = OUString::createFromAscii("libcorefl.so"); #endif +#endif // ORealDynamicLoader::computeLibraryName( OUString::createFromAscii("corefl"), libName); xImplReg->registerImplementation(OUString::createFromAscii("com.sun.star.loader.SharedLibrary"), libName, Reference< XSimpleRegistry >() ); @@ -1610,8 +1614,12 @@ int __cdecl main( int argc, char * argv[] ) #ifdef SAL_W32 libName = OUString::createFromAscii("insp.dll"); #else +#ifdef MACOSX + libName = OUString::createFromAscii("libinsp.dylib.framework"); +#else libName = OUString::createFromAscii("libinsp.so"); #endif +#endif // ORealDynamicLoader::computeLibraryName( OUString::createFromAscii("insp"), libName); xImplReg->registerImplementation(OUString::createFromAscii("com.sun.star.loader.SharedLibrary"), libName, Reference< XSimpleRegistry >() ); |