From 913c32ee34366aefbade07b39a0de5391368b650 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Mon, 8 Aug 2016 15:52:36 +0200 Subject: [PATCH] Fix build of clutter tests Various clutter test directly use cogl symbols, so they should be linked against mutter-cogl as well. Signed-off-by: Sjoerd Simons https://bugzilla.gnome.org/show_bug.cgi?id=769636 --- clutter/tests/interactive/Makefile.am | 4 +++- clutter/tests/micro-bench/Makefile.am | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/clutter/tests/interactive/Makefile.am b/clutter/tests/interactive/Makefile.am index ebea6d210..24a7f48c2 100644 --- a/clutter/tests/interactive/Makefile.am +++ b/clutter/tests/interactive/Makefile.am @@ -109,7 +109,9 @@ clean-wrappers: .PHONY: wrappers clean-wrappers -common_ldadd = $(top_builddir)/clutter/libmutter-clutter-@CLUTTER_API_VERSION@.la +common_ldadd = \ + $(top_builddir)/clutter/libmutter-clutter-@CLUTTER_API_VERSION@.la \ + $(top_builddir)/../cogl/cogl/libmutter-cogl.la check_PROGRAMS = test-interactive check_SCRIPTS = wrappers diff --git a/clutter/tests/micro-bench/Makefile.am b/clutter/tests/micro-bench/Makefile.am index 9060c383d..2731b9e8f 100644 --- a/clutter/tests/micro-bench/Makefile.am +++ b/clutter/tests/micro-bench/Makefile.am @@ -1,4 +1,7 @@ -common_ldadd = $(top_builddir)/clutter/libmutter-clutter-@CLUTTER_API_VERSION@.la +common_ldadd = \ + $(top_builddir)/clutter/libmutter-clutter-@CLUTTER_API_VERSION@.la \ + $(top_builddir)/../cogl/cogl/libmutter-cogl.la + check_PROGRAMS = \ test-text \