Tags: patch
Usertags: origin-ubuntu natty ubuntu-patch
In Ubuntu, we've applied the attached patch to achieve the following:
* debian/patches/fix-ftbfs-binutils-gold.patch:
- Fix FTBFS with binutils-gold. (Closes: #555177)
We thought you might be interested in doing the same.
Description: Fix FTBFS with binutils-gold by missing linking -lgtk-x11-2.0 -lgobject-2.0 -lgconf-2.
Bug-Debian: http://bugs.debian.org/555177
Author: Artur Rona <[email protected]>
--- libgconf-bridge-0.1.orig/tests/Makefile.am
+++ libgconf-bridge-0.1/tests/Makefile.am
@@ -5,7 +5,7 @@
noinst_PROGRAMS = test
test_SOURCES = test.c
-test_LDADD = $(top_builddir)/libgconf-bridge/libgconf-bridge.la
+test_LDADD = $(top_builddir)/libgconf-bridge/libgconf-bridge.la -lgtk-x11-2.0 -lgobject-2.0 -lgconf-2
CLEANFILES = $(BUILT_SOURCES)
DISTCLEANFILES = $(BUILT_SOURCES)
only in patch2:
unchanged:
--- libgconf-bridge-0.1.orig/tests/Makefile.in
+++ libgconf-bridge-0.1/tests/Makefile.in
@@ -196,7 +196,7 @@
-I$(top_srcdir) -I$(top_builddir) -Werror
test_SOURCES = test.c
-test_LDADD = $(top_builddir)/libgconf-bridge/libgconf-bridge.la
+test_LDADD = $(top_builddir)/libgconf-bridge/libgconf-bridge.la -lgtk-x11-2.0 -lgobject-2.0 -lgconf-2
CLEANFILES = $(BUILT_SOURCES)
DISTCLEANFILES = $(BUILT_SOURCES)
MAINTAINERCLEANFILES = Makefile.in $(BUILT_SOURCES)