From 82dad9a9d30d65292630b7594d5b23d6ffe453f5 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 17 Mar 2013 13:09:35 +0100 Subject: [PATCH 1/1] autotools: Don't use "foreign" option. This adds INSTALL and allows for a few more sanity checks being done. --- .gitignore | 1 + AUTHORS | 7 +++++++ autogen.sh | 2 +- configure.ac | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 AUTHORS diff --git a/.gitignore b/.gitignore index 5f5c23c..93a54c3 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ missing stamp-h1 autostuff/ ChangeLog +INSTALL # recursive autoconf leftovers .deps diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..28c1b20 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,7 @@ +------------------------------------------------------------------------------- +AUTHORS +------------------------------------------------------------------------------- + +Please check the source code files and/or git history and/or ChangeLog for +a list of all authors and contributors. + diff --git a/autogen.sh b/autogen.sh index 8185af0..d760233 100755 --- a/autogen.sh +++ b/autogen.sh @@ -55,6 +55,6 @@ echo "Generating build system..." ${LIBTOOLIZE} --install --copy --quiet || exit 1 aclocal ${ACLOCAL_DIR} || exit 1 autoheader || exit 1 -automake --add-missing --copy --foreign || exit 1 +automake --add-missing --copy || exit 1 autoconf || exit 1 diff --git a/configure.ac b/configure.ac index a2d11f9..76c05f7 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AC_CONFIG_MACRO_DIR([autostuff]) AC_CONFIG_AUX_DIR([autostuff]) # We require at least automake 1.11 (needed for 'silent rules'). -AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options]) +AM_INIT_AUTOMAKE([1.11 -Wall -Werror std-options check-news]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) -- 2.30.2