diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-11 14:42:25 -0500 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-11 15:02:44 -0500 |
commit | c3215ba1d46f7965fb58272da069bec389a174df (patch) | |
tree | 6bc33924d656789c6eb42ebd2c6accf7c8aef87e /json-glib/tests | |
parent | 7f85693922d1e2614bcce9219d2c6521580dd360 (diff) | |
download | json-glib-c3215ba1d46f7965fb58272da069bec389a174df.tar.gz |
json-glib/tests: explicitely link against glib
Tests fail to link otherwise.
Bug #626669
Diffstat (limited to 'json-glib/tests')
-rw-r--r-- | json-glib/tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/json-glib/tests/Makefile.am b/json-glib/tests/Makefile.am index 0fef8e9..917b0de 100644 --- a/json-glib/tests/Makefile.am +++ b/json-glib/tests/Makefile.am @@ -14,7 +14,8 @@ AM_CFLAGS = -g $(JSON_CFLAGS) $(MAINTAINER_CFLAGS) EXTRA_DIST += stream-load.json noinst_PROGRAMS = $(TEST_PROGS) -progs_ldadd = $(top_builddir)/json-glib/libjson-glib-1.0.la +progs_ldadd = $(JSON_LIBS) \ + $(top_builddir)/json-glib/libjson-glib-1.0.la TEST_PROGS += array-test array_test_SOURCES = array-test.c |