Link cppu statically to gcc3_uno on iOS

This commit is contained in:
Tor Lillqvist
2011-08-21 17:33:43 +03:00
parent c209bef8e5
commit b6a9f3560a
4 changed files with 19 additions and 5 deletions

View File

@@ -41,9 +41,6 @@
namespace cppu { namespace detail {
::oslModule loadModule(rtl::OUString const & name) {
#ifdef IOS
return NULL;
#else
rtl::OUStringBuffer b;
#if defined SAL_DLLPREFIX
b.appendAscii(RTL_CONSTASCII_STRINGPARAM(SAL_DLLPREFIX));
@@ -54,7 +51,6 @@ namespace cppu { namespace detail {
reinterpret_cast< oslGenericFunction >(&loadModule),
b.makeStringAndClear().pData,
SAL_LOADMODULE_GLOBAL | SAL_LOADMODULE_LAZY);
#endif
}
} }