diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-06-04 09:20:19 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-06-04 11:41:50 +0300 |
commit | f79d5b911620d3a4b72925684647bc2cec454bff (patch) | |
tree | d3eca6afaeab30c8e8e47ceeecbe49767ab0c85f /cppuhelper/source/shlib.cxx | |
parent | 9c0b624286c1e1148e7bf552704b1a334ebaacfb (diff) |
Unbreak stuff on iOS a bit after bootstrapping changes
Change-Id: I0d2ebfc9aa78a9fed057b853d54797a88218c587
Diffstat (limited to 'cppuhelper/source/shlib.cxx')
-rw-r--r-- | cppuhelper/source/shlib.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index 6a5ace502d85..7d871423062d 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -541,6 +541,7 @@ Reference< XInterface > SAL_CALL loadSharedLibComponentFactory( // First test library names that aren't app-specific. static lib_to_component_mapping non_app_specific_map[] = { { "bootstrap.uno" SAL_DLLEXTENSION, bootstrap_component_getFactory }, + { "bootstrap.uno.a", bootstrap_component_getFactory }, { "configmgr.uno.a", configmgr_component_getFactory }, { "expwrap.uno.a", expwrap_component_getFactory }, { "fastsax.uno.a", fastsax_component_getFactory }, @@ -568,6 +569,7 @@ Reference< XInterface > SAL_CALL loadSharedLibComponentFactory( if ( pSym == NULL) { + // The call the app-specific lo_get_libmap() to get a mapping for the rest const lib_to_component_mapping *map = lo_get_libmap(); for (int i = 0; pSym == NULL && map[i].lib != NULL; ++i) { |