mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
57a7a2b010
2000-12-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * configure.in: Determine the suffix of the shared librarries for this system. This is done analogous to ltconfig.sh. G_MODULE_SUFFIX in glibconfig.h is set to either "sl", "dll", or (most often) "so". * tests/Makefile.am, tests/module-test.c, tests/libmoduletestplugin_a.c, tests/libmoduletestplugin_b.c: Added new testcase for gmodule. This is mostly copied from gmodule/testgmodule.c, but unlike that is is quiet. (Why BTW are some tests that verbose, not to say loquacious...) * gmodule.c: Make g_module_open more tolerant wrt to the module name. First it tries to open the module as named, if that fails, it checks, whether it is a libtool archive and parses it, if that fails it appends the systems shared library suffix (i.e. ".so") (if not already found) and tries again and if that fails it tries to append the ".la" libtool suffix (if not already found) and parses it. * gmodule.c: Lock recursive mutex during most module functions for safety. * gmodule-dl.c: Return an error from _g_module_symbol only, if dlerror says so. All other functions return an error as well, if dlerror returns NULL. * testgmodule.c: Thanks to the above change the #ifdefs have vanished. * glib/glib-sections.txt: Added G_MODULE_SUFFIX. * glib/tmpl/modules.sgml: Updated.
104 lines
2.9 KiB
Makefile
104 lines
2.9 KiB
Makefile
|
|
INCLUDES = -I$(top_srcdir) @GLIB_DEBUG_FLAGS@
|
|
|
|
EFENCE=
|
|
|
|
EXTRA_DIST = \
|
|
$(test_scripts) \
|
|
makefile.msc.in \
|
|
makefile.mingw.in
|
|
|
|
BUILT_EXTRA_DIST = \
|
|
makefile.msc \
|
|
makefile.mingw
|
|
|
|
test_programs = \
|
|
array-test \
|
|
date-test \
|
|
dirname-test \
|
|
gio-test \
|
|
hash-test \
|
|
list-test \
|
|
mainloop-test \
|
|
module-test \
|
|
node-test \
|
|
queue-test \
|
|
rand-test \
|
|
relation-test \
|
|
shell-test \
|
|
slist-test \
|
|
spawn-test \
|
|
strfunc-test \
|
|
string-test \
|
|
thread-test \
|
|
threadpool-test \
|
|
tree-test \
|
|
type-test
|
|
|
|
test_scripts = run-markup-tests.sh
|
|
|
|
test_script_support_programs = markup-test
|
|
|
|
check_PROGRAMS = $(test_programs) $(test_script_support_programs)
|
|
|
|
TESTS = $(test_programs) $(test_scripts)
|
|
TESTS_ENVIRONMENT = srcdir=$(srcdir)
|
|
|
|
progs_LDADD = $(EFENCE) $(top_builddir)/libglib-1.3.la $(EFENCE)
|
|
thread_LDADD = $(progs_LDADD) $(top_builddir)/gthread/libgthread-1.3.la @G_THREAD_LIBS@
|
|
module_LDADD = $(progs_LDADD) $(top_builddir)/gmodule/libgmodule-1.3.la @G_MODULE_LIBS@
|
|
|
|
array_test_LDADD = $(progs_LDADD)
|
|
date_test_LDADD = $(progs_LDADD)
|
|
dirname_test_LDADD = $(progs_LDADD)
|
|
gio_test_LDADD = $(progs_LDADD)
|
|
hash_test_LDADD = $(progs_LDADD)
|
|
list_test_LDADD = $(progs_LDADD)
|
|
mainloop_test_LDADD = $(thread_LDADD)
|
|
markup_test_LDADD = $(progs_LDADD)
|
|
module_test_LDADD = $(module_LDADD)
|
|
module_test_LDFLAGS = @G_MODULE_LDFLAGS@
|
|
node_test_LDADD = $(progs_LDADD)
|
|
queue_test_LDADD = $(progs_LDADD)
|
|
rand_test_LDADD = $(progs_LDADD)
|
|
relation_test_LDADD = $(progs_LDADD)
|
|
shell_test_LDADD = $(progs_LDADD)
|
|
slist_test_LDADD = $(progs_LDADD)
|
|
spawn_test_LDADD = $(progs_LDADD)
|
|
strfunc_test_LDADD = $(progs_LDADD)
|
|
string_test_LDADD = $(progs_LDADD)
|
|
thread_test_LDADD = $(thread_LDADD)
|
|
threadpool_test_LDADD = $(thread_LDADD)
|
|
tree_test_LDADD = $(progs_LDADD)
|
|
type_test_LDADD = $(progs_LDADD)
|
|
|
|
lib_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
|
|
|
|
# Prevent those libs from being installed
|
|
install-libLTLIBRARIES:
|
|
:
|
|
|
|
libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
|
|
libmoduletestplugin_a_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module
|
|
libmoduletestplugin_a_la_LIBADD = @G_MODULE_LIBS@
|
|
|
|
libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
|
|
libmoduletestplugin_b_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module
|
|
libmoduletestplugin_b_la_LIBADD = @G_MODULE_LIBS@
|
|
|
|
makefile.msc: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.msc.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.mingw.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
dist-hook: $(BUILT_EXTRA_DIST)
|
|
files='$(BUILT_EXTRA_DIST)'; \
|
|
for f in $$files; do \
|
|
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
cp $$d/$$f $(distdir) || exit 1; done
|
|
mkdir $(distdir)/markups; \
|
|
for f in $(srcdir)/markups/* ; do \
|
|
cp $$f $(distdir)/markups; \
|
|
done
|