summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-02-19 10:34:22 -0500
committerDan Winship <danw@gnome.org>2013-02-19 10:37:02 -0500
commit3fd71aca10bddab2da282737e4a26ee0c53e4dec (patch)
tree64193e4181ecb28ab088f37b4a3d1c8422a3a342 /configure.ac
parent118062681c732e57fc2851cd21c34cab2579c9f4 (diff)
downloadlibsoup-3fd71aca10bddab2da282737e4a26ee0c53e4dec.tar.gz
tests: fix under automake 1.13
The parallel test harness (which is the default as of automake 1.13) doesn't let you use make functions in the definition of TESTS. (It generates an invalid Makefile in this case.) Since the tests as currently written won't work with the parallel harness anyway (since each apache-based test stops apache when it's done), just force the serial harness for now. https://bugzilla.gnome.org/show_bug.cgi?id=694135
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1b120812..781361a5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,7 +11,7 @@ AC_INIT([libsoup],[soup_major_version.soup_minor_version.soup_micro_version],[ht
AC_CONFIG_SRCDIR([libsoup-2.4.pc.in])
AC_CONFIG_MACRO_DIR([m4])
-AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz -Wno-portability])
+AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz -Wno-portability serial-tests])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
AC_PROG_MAKE_SET