summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2011-09-05 21:47:08 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2011-09-07 22:01:29 +0200
commit08aa0752062e06fc04c5e46429938831989d092c (patch)
treef5904c30b9694a448a8c1d5055ea6ed7591b3eae
parentab71b3fe85fb83ef9f5474dcf975645dae90b465 (diff)
downloadgobject-introspection-08aa0752062e06fc04c5e46429938831989d092c.tar.gz
Windows port: set CAIRO_LIBS in LIBADD, not LDFLAGS
https://bugzilla.gnome.org/show_bug.cgi?id=620566
-rw-r--r--tests/scanner/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/scanner/Makefile.am b/tests/scanner/Makefile.am
index fc2e260a..58827342 100644
--- a/tests/scanner/Makefile.am
+++ b/tests/scanner/Makefile.am
@@ -27,12 +27,13 @@ libfoo_la_LIBADD = $(top_builddir)/libgirepository-1.0.la
libutility_la_SOURCES = $(srcdir)/utility.c $(srcdir)/utility.h
libgtkfrob_la_SOURCES = $(srcdir)/gtkfrob.c $(srcdir)/gtkfrob.h
libregress_la_SOURCES = $(srcdir)/regress.c $(srcdir)/regress.h
+libregress_la_LIBADD = $(GIO_LIBS) $(CAIRO_LIBS)
testsdir = $(datadir)/gobject-introspection-1.0/tests
tests_DATA = $(libregress_la_SOURCES)
libregress_la_CFLAGS = $(AM_CFLAGS) $(CAIRO_CFLAGS)
-libregress_la_LDFLAGS = $(AM_LDFLAGS) $(CAIRO_LIBS)
+libregress_la_LDFLAGS = $(AM_LDFLAGS)
if OS_WIN32