From: Martin Willi Date: Mon, 4 Nov 2013 10:59:11 +0000 (+0100) Subject: automake: Don't use parallel test harness being the default with automake 1.13 X-Git-Tag: 5.1.2dr1~33^2~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6531afb5570324f236c9166abd66318e1b5e2e32;p=thirdparty%2Fstrongswan.git automake: Don't use parallel test harness being the default with automake 1.13 We have no need for the parallel test harness, and we prefer to have the output of make check on the console --- diff --git a/configure.ac b/configure.ac index df1dc6847c..4d687cef77 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,17 @@ # ============================ AC_INIT([strongSwan],[5.1.1]) -AM_INIT_AUTOMAKE([tar-ustar subdir-objects]) +AM_INIT_AUTOMAKE(m4_esyscmd([ + echo tar-ustar + echo subdir-objects + case `automake --version | head -n 1` in + *" 1.9"*);; + *" 1.10"*);; + *" 1.11"*);; + # don't use parallel test harness in 1.12 and up + *) echo serial-tests;; + esac +])) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) AC_CONFIG_MACRO_DIR([m4/config]) AC_CONFIG_HEADERS([config.h])