mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
646a5c1cbf
a/pkgtools-15.0-noarch-13.txz: Rebuilt. installpkg: default line length for --terselength is the number of columns. removepkg: added --terse mode. upgradepkg: default line length for --terselength is the number of columns. upgradepkg: accept -option in addition to --option. ap/vim-8.1.0026-x86_64-1.txz: Upgraded. d/bison-3.0.5-x86_64-1.txz: Upgraded. e/emacs-26.1-x86_64-1.txz: Upgraded. kde/kopete-4.14.3-x86_64-8.txz: Rebuilt. Recompiled against libidn-1.35. n/conntrack-tools-1.4.5-x86_64-1.txz: Upgraded. n/libnetfilter_conntrack-1.0.7-x86_64-1.txz: Upgraded. n/libnftnl-1.1.0-x86_64-1.txz: Upgraded. n/links-2.16-x86_64-2.txz: Rebuilt. Rebuilt to enable X driver for -g mode. n/lynx-2.8.9dev.19-x86_64-1.txz: Upgraded. n/nftables-0.8.5-x86_64-1.txz: Upgraded. n/p11-kit-0.23.11-x86_64-1.txz: Upgraded. n/ulogd-2.0.7-x86_64-1.txz: Upgraded. n/whois-5.3.1-x86_64-1.txz: Upgraded. xap/network-manager-applet-1.8.12-x86_64-1.txz: Upgraded. xap/vim-gvim-8.1.0026-x86_64-1.txz: Upgraded.
48 lines
1.9 KiB
Diff
48 lines
1.9 KiB
Diff
--- glib-1.2.10/gthread/Makefile.am.no_undefined 1999-08-26 08:09:43.000000000 -0500
|
|
+++ glib-1.2.10/gthread/Makefile.am 2006-05-04 08:38:36.000000000 -0500
|
|
@@ -17,9 +17,11 @@
|
|
libgthread_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE) \
|
|
+ -no-undefined -Wl,--no-undefined \
|
|
-export-dynamic
|
|
|
|
-libgthread_la_LIBADD = @G_THREAD_LIBS@
|
|
+libgthread_la_DEPENDENCIES = $(libglib) $(top_builddir)/gmodule/libgmodule.la
|
|
+libgthread_la_LIBADD = @G_THREAD_LIBS@ $(libglib) $(top_builddir)/gmodule/libgmodule.la
|
|
|
|
noinst_PROGRAMS = testgthread
|
|
-testgthread_LDADD = ../libglib.la libgthread.la
|
|
+testgthread_LDADD = libgthread.la
|
|
--- glib-1.2.10/gmodule/Makefile.am.no_undefined 2001-03-15 09:33:10.000000000 -0600
|
|
+++ glib-1.2.10/gmodule/Makefile.am 2006-05-04 08:33:22.000000000 -0500
|
|
@@ -27,23 +27,25 @@
|
|
@G_MODULE_LDFLAGS@ \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE) \
|
|
+ -no-undefined -Wl,--no-undefined \
|
|
-export-dynamic
|
|
|
|
-libgmodule_la_LIBADD = @G_MODULE_LIBS@ # $(libglib)
|
|
+libgmodule_la_DEPENDENCIES = $(libglib)
|
|
+libgmodule_la_LIBADD = @G_MODULE_LIBS@ $(libglib)
|
|
# we should really depend on $(libglib) for libgmodule.la, but libtool has a
|
|
# problem with this ;(
|
|
|
|
libgplugin_a_la_SOURCES = libgplugin_a.c
|
|
libgplugin_a_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module
|
|
-libgplugin_a_la_LIBADD = @G_MODULE_LIBS@ # $(libglib)
|
|
+libgplugin_a_la_LIBADD = @G_MODULE_LIBS@ $(libglib)
|
|
|
|
libgplugin_b_la_SOURCES = libgplugin_b.c
|
|
libgplugin_b_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module
|
|
-libgplugin_b_la_LIBADD = @G_MODULE_LIBS@ # $(libglib)
|
|
+libgplugin_b_la_LIBADD = @G_MODULE_LIBS@ $(libglib)
|
|
|
|
noinst_PROGRAMS = testgmodule
|
|
testgmodule_LDFLAGS += @G_MODULE_LDFLAGS@
|
|
-testgmodule_LDADD = libgmodule.la $(libglib) @G_MODULE_LIBS@
|
|
+testgmodule_LDADD = libgmodule.la @G_MODULE_LIBS@
|
|
|
|
.PHONY: files release
|
|
|