[libpng16] Check libtool/libtoolize version number (2.4.2) in configure.ac

This commit is contained in:
John Bowler 2012-01-28 00:48:08 -06:00 committed by Glenn Randers-Pehrson
parent 3a1d63dc69
commit feecc898d9
3 changed files with 14 additions and 3 deletions

View File

@ -144,6 +144,7 @@ Version 1.6.0beta07 [January 28, 2012]
Version 1.6.0beta08 [January 28, 2012]
Fixed Image::colormap mis-alignment in pngstest.c
Check libtool/libtoolize version number (2.4.2) in configure.ac
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -3895,6 +3895,7 @@ Version 1.6.0beta07 [January 28, 2012]
Version 1.6.0beta08 [January 28, 2012]
Fixed Image::colormap mis-alignment in pngstest.c
Check libtool/libtoolize version number (2.4.2) in configure.ac
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -14,16 +14,21 @@ dnl Makefile.am to upgrade the package name.
dnl This is here to prevent earlier autoconf from being used, it
dnl should not be necessary to regenerate configure if the time
dnl stamps are correct
AC_PREREQ([2.59])
AC_PREREQ([2.68])
dnl Version number stuff here:
AC_INIT([libpng],[1.6.0beta08], [png-mng-implement@lists.sourceforge.net])
AC_INIT([libpng],[1.6.0beta08],[png-mng-implement@lists.sourceforge.net])
AC_CONFIG_MACRO_DIR([scripts])
AM_INIT_AUTOMAKE
dnl stop configure from automagically running automake
AM_MAINTAINER_MODE
dnl configure.ac and Makefile.am expect automake 1.11.2 or a compatible later
dnl version; aclocal.m4 will generate a failure if you use a prior version of
dnl automake, so the following is not necessary (and is not defined anyway):
dnl AM_PREREQ([1.11.2])
dnl stop configure from automagically running automake
PNGLIB_VERSION=1.6.0beta08
PNGLIB_MAJOR=1
PNGLIB_MINOR=6
@ -45,7 +50,11 @@ AC_CHECK_TOOL(AWK, awk, :)
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl libtool/libtoolize; version 2.4.2 is the tested version, this or any
dnl compatible later version may be used
LT_INIT([win32-dll])
LT_PREREQ([2.4.2])
# On Solaris 10 and 12 CPP gets set to cc -E, however this still
# does some input parsing. We need strict ANSI-C style tokenization,