[libpng16] Moved automake options to AM_INIT_AUTOMAKE in configure.ac

Added color-tests, silent-rules (Not yet implemented in Makefile.am) and
version checking to configure.ac
This commit is contained in:
John Bowler
2012-01-28 18:06:55 -06:00
committed by Glenn Randers-Pehrson
parent 5cdff4144e
commit 05cbe5ae28
4 changed files with 20 additions and 12 deletions

View File

@@ -20,7 +20,13 @@ dnl Version number stuff here:
AC_INIT([libpng],[1.6.0beta08],[png-mng-implement@lists.sourceforge.net])
AC_CONFIG_MACRO_DIR([scripts])
AM_INIT_AUTOMAKE
# libpng does not follow GNU file name conventions (hence 'foreign')
# color-tests requires automake 1.11 or later
# silent-rules requires automake 1.11 or later
# dist-xz requires automake 1.11 or later
# 1.11.1 fixes a security issue in 1.11
AM_INIT_AUTOMAKE([1.11.1 foreign dist-xz dist-bzip2 color-tests silent-rules])
AM_MAINTAINER_MODE
dnl configure.ac and Makefile.am expect automake 1.11.2 or a compatible later