1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Fix Makefile.am in examples to avoid a FTBFS with binutils-gold, by
adding libgobject-2.0 and libglib-2.0 to libraries used to link sf2.
Author: Fabrice Coutadeur <fabricesp@ubuntu.com>
Bug-Debian: http://bugs.debian.org/603500
Forwarded: https://sourceforge.net/support/tracker.php?aid=3109296
---
examples/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- libinstpatch.orig/examples/Makefile.am
+++ libinstpatch/examples/Makefile.am
@@ -4,7 +4,7 @@ EXTRA_DIST = create_sf2.py
noinst_PROGRAMS = create_sf2
create_sf2_SOURCES = create_sf2.c
-create_sf2_LDADD = $(top_srcdir)/libinstpatch/libinstpatch-1.0.la
+create_sf2_LDADD = $(top_srcdir)/libinstpatch/libinstpatch-1.0.la -lgobject-2.0 -lglib-2.0
INCLUDES = -I$(top_srcdir) @GOBJECT_CFLAGS@
|