Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Fri, 12 Jul 2013 13:39:57 UTC Commit: f0e590022b89ede69cd00ef270c05aa39cd3ed46 https://github.com/geany/geany/commit/f0e590022b89ede69cd00ef270c05aa39cd3ed...
Log Message: ----------- Fix the test suite with Automake < 1.13
The test suite uses a LOG_COMPILER, which requires the parallel-tests Automake test driver which is the default only since version 1.13, so explicitly enable it so it is used by earlier versions too.
Moreover, the parallel-tests test diver was introduced by Automake 1.11, as was the option, so we need to depend on it too. It was released 2009-05-17, which is 2 months after GTK 2.16, the minimum GTK version we depend on (2009-03-13). If this is a problem, we could also rework the Automake test layout to use the older and a little deprecated serial-tests test driver that is the historical one.
Modified Paths: -------------- configure.ac
Modified: configure.ac 2 files changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -6,7 +6,7 @@ AC_INIT([Geany], [1.24], AC_CONFIG_SRCDIR([src/geany.h]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([1.11 parallel-tests]) AC_CONFIG_HEADERS([config.h])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).