[cogl] examples: use $(COGL_PANGO_DEP_LIBS) for cogl-pango users
- From: Robert Bragg <rbragg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl] examples: use $(COGL_PANGO_DEP_LIBS) for cogl-pango users
- Date: Mon, 5 Sep 2011 18:49:15 +0000 (UTC)
commit 5ac563afdbd626cc0f1f1b1062ba7e7cd58dd9be
Author: Robert Bragg <robert linux intel com>
Date: Mon Sep 5 12:42:41 2011 +0100
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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/examples/Makefile.am b/examples/Makefile.am
index b28cb23..8b55c09 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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]