Merge branch 'maint' into branch-1.11
authorStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 16 Jan 2012 17:43:28 +0000 (18:43 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 16 Jan 2012 17:43:28 +0000 (18:43 +0100)
* maint:
  recheck: fix interaction with "make -n"
  vala: avoid potential useless remakes (minor bugfix)
  vala: enhance tests
  recheck: behave better with non-GNU make
  check: separate .log -> .html conversion from core testsuite harness
  docs: deprecate .log -> .html conversion by parallel-tests
  tests: list some forgotten test cases in $(TESTS)
  maintcheck: consistency of list of test scripts

1  2 
NEWS
automake.in
doc/automake.texi
tests/Makefile.am
tests/list-of-tests.mk
tests/vala.test

diff --cc NEWS
--- 1/NEWS
--- 2/NEWS
+++ b/NEWS
@@@ -2,10 -2,10 +2,14 @@@ New in 1.11.2a
  
  * WARNING: Future backward-incompatibilities!
  
+   - The support for ".log -> .html" conversion and the check-html and
+     recheck-html targets will be removed in the next major Automake
+     release (1.12).
 +  - The obsolescent AM_WITH_REGEX  macro has been deprecated (since the
 +    GNU rx library has been decommissioned), and will be removed in the
 +    next major Automake release (1.12).
 +
    - The `lzma' compression format for distribution archives has been
      deprecated in favor of `xz' and `lzip', and will be removed in the
      next major Automake release (1.12).
diff --cc automake.in
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc tests/vala.test
  
  set -e
  
- cat >> 'configure.in' << 'END'
+ # So that we won't require libtool macros.
+ cat > acinclude.m4 <<'END'
+ AC_DEFUN([AC_PROG_LIBTOOL],
+          [AC_SUBST([LIBTOOL], [:])])
+ END
+ cat >> configure.in <<'END'
  AC_PROG_CC
- AM_PROG_AR
+ AC_PROG_CXX
  AC_PROG_LIBTOOL
++AM_PROG_AR
  AM_PROG_VALAC
+ AC_CONFIG_FILES([sub/Makefile])
  AC_OUTPUT
  END