[glib] Use "-module" when compiling loadable modules



commit f7a14fece4891ea31522ca282807c71ca7f89938
Author: Daniel Macks <dmacks netspace org>
Date:   Mon Jun 16 01:02:49 2014 -0400

    Use "-module" when compiling loadable modules
    
    Some platforms use different extensions for compile-time linkable
    libraries vs runtime-loadable modules. Need to use special libtool
    flag in the latter case for consistency with what gmodule expects.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=731703

 gio/tests/modules/Makefile.am |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gio/tests/modules/Makefile.am b/gio/tests/modules/Makefile.am
index 4ca45f4..c301b6c 100644
--- a/gio/tests/modules/Makefile.am
+++ b/gio/tests/modules/Makefile.am
@@ -34,8 +34,8 @@ endif
 
 libtestmodulea_la_SOURCES = test-module-a.c symbol-visibility.h
 libtestmodulea_la_LIBADD = $(LDADD)
-libtestmodulea_la_LDFLAGS = $(LDFLAGS) -no-undefined -avoid-version $(rpath_hack)
+libtestmodulea_la_LDFLAGS = $(LDFLAGS) -module -no-undefined -avoid-version $(rpath_hack)
 
 libtestmoduleb_la_SOURCES = test-module-b.c symbol-visibility.h
 libtestmoduleb_la_LIBADD = $(LDADD)
-libtestmoduleb_la_LDFLAGS =$(LDFLAGS) -no-undefined -avoid-version $(rpath_hack)
+libtestmoduleb_la_LDFLAGS =$(LDFLAGS) -module -no-undefined -avoid-version $(rpath_hack)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]