From 5ac563afdbd626cc0f1f1b1062ba7e7cd58dd9be Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 5 Sep 2011 12:42:41 +0100 Subject: [PATCH] examples: use $(COGL_PANGO_DEP_LIBS) for cogl-pango users The crate example uses the cogl_pango API and perviously we just explicitly said to link with the libcogl-pango.la but that doesn't seem to be enough (not really sure why since libtool should know the required dependencies to brining in for linking) so we now pass $(COGL_PANGO_DEP_LIBS) when linking the crate demo. https://bugzilla.gnome.org/show_bug.cgi?id=656441 --- examples/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index b28cb239f..8b55c09d0 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -28,7 +28,7 @@ hello_LDADD = $(common_ldadd) if BUILD_COGL_PANGO noinst_PROGRAMS += crate crate_SOURCES = crate.c -crate_LDADD = $(common_ldadd) $(top_builddir)/cogl-pango/libcogl-pango.la +crate_LDADD = $(common_ldadd) $(COGL_PANGO_DEP_LIBS) $(top_builddir)/cogl-pango/libcogl-pango.la crate_CFLAGS = $(AM_CFLAGS) $(COGL_PANGO_DEP_CFLAGS) endif