diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-09-14 15:01:30 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-09-21 14:46:12 +0300 |
commit | e5045bea0ab261e47c2829d33cd8e383dfb8e684 (patch) | |
tree | 5c468e1df330b87dd248fb1a7ccaff57d89791ed /cppu | |
parent | 41e8c36d09c865f21feb465337e56e3e524c9e29 (diff) |
Adapt for DISABLE_DYNLOADING possibility also for Android
Change-Id: Ie1ff96b6f58bf694b8d08a3316144becaaefe6d9
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/uno/lbmap.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cppu/source/uno/lbmap.cxx b/cppu/source/uno/lbmap.cxx index 25d38b695642..2720811d0bea 100644 --- a/cppu/source/uno/lbmap.cxx +++ b/cppu/source/uno/lbmap.cxx @@ -329,11 +329,11 @@ static uno_ext_getMappingFunc selectMapFunc( const OUString & rBridgeName ) { if (rBridgeName.equalsAscii( CPPU_CURRENT_LANGUAGE_BINDING_NAME "_uno" )) return CPPU_ENV_uno_ext_getMapping; -#ifndef IOS - // I don't think the affine or log bridges will be needed on iOS, - // and DISABLE_DYNLOADING will hardly be used elsewhere, but if - // somebody wants to experiment, need to find out then whether - // these are needed. +#if 0 + // I don't think the affine or log bridges will be needed on any + // DISABLE_DYNLOADING platform (iOS at least, possibly Android), but if + // somebody wants to experiment, need to find out then whether these are + // needed. if (rBridgeName.equalsAscii( "affine_uno_uno" )) return affine_uno_uno_ext_getMapping; if (rBridgeName.equalsAscii( "log_uno_uno" )) |