* configure.ac: Here, so that Automake 1.12 stops complaining
about AM_PROG_AR not being used, while preserving the
compatibility with Automake versions 1.11.2 and earlier.
---
ChangeLog | 8 ++++++++
configure.ac | 11 ++++++++---
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f9a1027..5dc3d45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2013-02-13 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Disable Automake's extra-portability warnings.
+
+ * configure.ac: Here, so that Automake 1.12 stops complaining
+ about AM_PROG_AR not being used, while preserving the
+ compatibility with Automake versions 1.11.2 and earlier.
+
2010-04-26 Roland Levillain <roland(a)lrde.epita.fr>
Enable parallel tests.
diff --git a/configure.ac b/configure.ac
index 3506192..9501c17 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 EPITA Research and
-# Development Laboratory (LRDE).
+# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 EPITA
+# Research and Development Laboratory (LRDE).
#
# This file is part of Olena.
#
@@ -34,8 +34,13 @@ AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_FILES([build-aux/Makefile])
# Automake.
+#
+# Disable the -Wextra-portability option until developers can all use
+# Automake 1.11.2 or newer (Debian GNU/Linux 6 ships Automake 1.11.1
+# only), at which point we'll use the new AM_PROG_AR macro instead.
AM_INIT_AUTOMAKE([1.11 subdir-objects check-news tar-ustar dist-bzip2
- parallel-tests nostdinc -Wall])
+ parallel-tests nostdinc
+ -Wall -Wno-extra-portability])
# Package metadata.
AC_CONFIG_FILES([milena/mln/version.hh])
--
1.7.2.5
Show replies by date