summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-11-28 16:55:12 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-11-28 16:55:12 +0100
commitc9affa778e14e7dc44221fa678963e09df744f32 (patch)
tree3f734b661df10ece02466690d59f62af92451428 /gmodule
parent97385dbbe82a628a9997ed85e6c9f58dddf334d0 (diff)
Revert "Fix compilation on Android with the bionic C library"
This reverts commit cb0ed84d4022e0fba6aaa9e99e258d8d507a90e5. It wasn't meant to be pushed yet.
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/gmodule-dl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gmodule/gmodule-dl.c b/gmodule/gmodule-dl.c
index a606f17e8..035b2a9e7 100644
--- a/gmodule/gmodule-dl.c
+++ b/gmodule/gmodule-dl.c
@@ -113,11 +113,7 @@ _g_module_self (void)
* are required on some systems.
*/
-#ifdef __BIONIC__
- handle = RTLD_DEFAULT;
-#else
handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
-#endif
if (!handle)
g_module_set_error (fetch_dlerror (TRUE));