summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
Diffstat (limited to 'gtk')
-rw-r--r--gtk/Makefile.am1
-rw-r--r--gtk/gtkmain.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 9315919292..cf3a4f40f4 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -132,6 +132,7 @@ deps =
# we use the general approach here
libtool_opts = \
-version-info $(LT_VERSION_INFO) \
+ $(GTK_VERSION_FLAGS) \
-export-dynamic $(no_undefined) $(LIBTOOL_EXPORT_OPTIONS) \
-rpath $(libdir) $(libgtk_target_ldflags)
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 4fb791d91a..60594f3639 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -639,6 +639,8 @@ _gtk_module_has_mixed_deps (GModule *module_to_check)
gpointer func;
gboolean result;
+ return FALSE;
+
if (!module_to_check)
module = g_module_open (NULL, 0);
else