From 86267fd9bd4dc54cd70f44e70d3d4c8456b88708 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 31 May 2014 14:39:27 +0200 Subject: [PATCH] gtk-reftest: Add GMODULE_CFLAGS/LIBS They aren't included in GTK_DEP_CFLAGS/LIBS so they need to be added manually. --- testsuite/reftests/Makefile.am | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/testsuite/reftests/Makefile.am b/testsuite/reftests/Makefile.am index 7c63241f73..8b1ee47616 100644 --- a/testsuite/reftests/Makefile.am +++ b/testsuite/reftests/Makefile.am @@ -14,12 +14,16 @@ gtk_reftest_CFLAGS = \ -DGDK_DISABLE_DEPRECATED \ -DGTK_DISABLE_DEPRECATED \ $(GTK_DEBUG_FLAGS) \ - $(GTK_DEP_CFLAGS) + $(GTK_DEP_CFLAGS) \ + $(GMODULE_CFLAGS) \ + $(NULL) gtk_reftest_LDADD = \ $(top_builddir)/gdk/libgdk-3.la \ $(top_builddir)/gtk/libgtk-3.la \ - $(GTK_DEP_LIBS) + $(GTK_DEP_LIBS) \ + $(GMODULE_LIBS) \ + $(NULL) gtk_reftest_SOURCES = \ reftest-module.c \