diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-03-10 11:54:10 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-03-10 11:54:10 +0000 |
commit | eb67f9343e1597b4dcf5854ad444de08f294d7cc (patch) | |
tree | 8c36a8e254d11aa87b3fe8e1c7f3d31859a728b3 /x11-libs/goocanvas/files | |
parent | Check for NULL pointer in response from conversation function, bug 407591. (diff) | |
download | historical-eb67f9343e1597b4dcf5854ad444de08f294d7cc.tar.gz historical-eb67f9343e1597b4dcf5854ad444de08f294d7cc.tar.bz2 historical-eb67f9343e1597b4dcf5854ad444de08f294d7cc.zip |
Add fix for underlinking detected by gold
Package-Manager: portage-2.2.0_alpha90/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/goocanvas/files')
-rw-r--r-- | x11-libs/goocanvas/files/goocanvas-2.0.1-gold.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11-libs/goocanvas/files/goocanvas-2.0.1-gold.patch b/x11-libs/goocanvas/files/goocanvas-2.0.1-gold.patch new file mode 100644 index 000000000000..c37dc4efef89 --- /dev/null +++ b/x11-libs/goocanvas/files/goocanvas-2.0.1-gold.patch @@ -0,0 +1,30 @@ + src/Makefile.am | 2 +- + src/Makefile.in | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/Makefile.am b/src/Makefile.am +index 2052baa..e5d9693 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -12,7 +12,7 @@ INCLUDES = \ + + lib_LTLIBRARIES = libgoocanvas-2.0.la + +-libgoocanvas_2_0_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) ++libgoocanvas_2_0_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) -lm + + if PLATFORM_WIN32 + no_undefined = -no-undefined +diff --git a/src/Makefile.in b/src/Makefile.in +index 1d927b9..15b9316 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -297,7 +297,7 @@ INCLUDES = \ + # -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \ + # -DGTK_DISABLE_DEPRECATED + lib_LTLIBRARIES = libgoocanvas-2.0.la +-libgoocanvas_2_0_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) ++libgoocanvas_2_0_la_LIBADD = @PACKAGE_LIBS@ $(INTLLIBS) -lm + @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined + libtool_opts = \ + -version-info $(LT_VERSION_INFO) \ |