/trunk/debian/control |
---|
5,9 → 5,9 |
Build-Depends: libtool, autoconf, automake1.9, |
debhelper (>= 7), libadns1-dev, |
libglib2.0-dev, libreadline-dev, |
tcl8.4-dev | tcl8.3-dev |
tcl8.4-dev | tcl8.3-dev, binutils-gold |
Build-Depends-Indep: sharutils |
Standards-Version: 3.8.3 |
Standards-Version: 3.9.1 |
Homepage: http://liboop.ofb.net/ |
Package: liboop4 |
/trunk/debian/changelog |
---|
12,8 → 12,13 |
* Upgrade to debhelper compatibility level 7, use dh_install instead |
of dh_movefiles as well as dh_prep instead of dh_clean. |
* configure_support_freebsd_hurd.patch: Separate patch for bug #359930. |
* explicit_linking.patch: In Makefile.am, explicitly link test-oop with |
all the libraries that the adapter libraries use, so that the package |
can be built with binutils-gold, where --no-add-needed is the default |
(Closes: #555285). Also add -lglib-2.0 to the Libs: line in |
liboop-glib2.pc (indirectly, via liboop-glib2.pc.in). |
-- Magnus Holmgren <holmgren@debian.org> Fri, 30 Jul 2010 16:57:24 +0200 |
-- Magnus Holmgren <holmgren@debian.org> Fri, 30 Jul 2010 17:57:35 +0200 |
liboop (1.0-6) unstable; urgency=low |
/trunk/debian/patches/series |
---|
1,2 → 1,3 |
read_bugfixes.patch |
configure_support_freebsd_hurd.patch |
explicit_linking.patch |
/trunk/debian/patches/explicit_linking.patch |
---|
0,0 → 1,20 |
--- a/Makefile.am |
+++ b/Makefile.am |
@@ -51,7 +51,7 @@ noinst_PROGRAMS = test-oop |
test_oop_SOURCES = test-oop.c |
test_oop_CFLAGS = $(GLIB2_CFLAGS) $(GLIB_INCLUDES) $(TCL_INCLUDES) $(WWW_INCLUDES) |
-test_oop_LDADD = $(lib_LTLIBRARIES) |
+test_oop_LDADD = $(lib_LTLIBRARIES) $(GLIB2_LIBS) $(ADNS_LIBS) $(TCL_LIBS) $(READLINE_LIBS) |
release: dist |
gzip -dc $(PACKAGE)-$(VERSION).tar.gz | bzip2 -9 \ |
--- a/liboop-glib2.pc.in |
+++ b/liboop-glib2.pc.in |
@@ -7,5 +7,5 @@ Name: liboop-glib2 |
Description: Event loop management library (GLIB2 support) |
Version: @VERSION@ |
Requires: liboop = @VERSION@ glib-2.0 |
-Libs: -L${libdir} -loop-glib2 |
+Libs: -L${libdir} -loop-glib2 @GLIB2_LIBS@ |
Cflags: -D_REENTRANT -I${includedir} |