mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
chore: Rerun ./autogen.sh --maintainer
This commit is contained in:
parent
2a845ff819
commit
3714c584b1
440
scripts/autoconf/libtool.m4
vendored
440
scripts/autoconf/libtool.m4
vendored
File diff suppressed because it is too large
Load Diff
58
scripts/autoconf/ltoptions.m4
vendored
58
scripts/autoconf/ltoptions.m4
vendored
@ -1,6 +1,6 @@
|
|||||||
# Helper functions for option handling. -*- Autoconf -*-
|
# Helper functions for option handling. -*- Autoconf -*-
|
||||||
#
|
#
|
||||||
# Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2022 Free
|
# Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2024 Free
|
||||||
# Software Foundation, Inc.
|
# Software Foundation, Inc.
|
||||||
# Written by Gary V. Vaughan, 2004
|
# Written by Gary V. Vaughan, 2004
|
||||||
#
|
#
|
||||||
@ -8,7 +8,7 @@
|
|||||||
# unlimited permission to copy and/or distribute it, with or without
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
# modifications, as long as this notice is preserved.
|
# modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
# serial 8 ltoptions.m4
|
# serial 10 ltoptions.m4
|
||||||
|
|
||||||
# This is to help aclocal find these macros, as it can't see m4_define.
|
# This is to help aclocal find these macros, as it can't see m4_define.
|
||||||
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
||||||
@ -128,7 +128,7 @@ LT_OPTION_DEFINE([LT_INIT], [win32-dll],
|
|||||||
[enable_win32_dll=yes
|
[enable_win32_dll=yes
|
||||||
|
|
||||||
case $host in
|
case $host in
|
||||||
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
|
*-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-cegcc*)
|
||||||
AC_CHECK_TOOL(AS, as, false)
|
AC_CHECK_TOOL(AS, as, false)
|
||||||
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
||||||
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
||||||
@ -323,18 +323,27 @@ dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
|
|||||||
|
|
||||||
# _LT_WITH_AIX_SONAME([DEFAULT])
|
# _LT_WITH_AIX_SONAME([DEFAULT])
|
||||||
# ----------------------------------
|
# ----------------------------------
|
||||||
# implement the --with-aix-soname flag, and support the `aix-soname=aix'
|
# implement the --enable-aix-soname configure option, and support the
|
||||||
# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT
|
# `aix-soname=aix' and `aix-soname=both' and `aix-soname=svr4' LT_INIT options.
|
||||||
# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'.
|
# DEFAULT is either `aix', `both', or `svr4'. If omitted, it defaults to `aix'.
|
||||||
m4_define([_LT_WITH_AIX_SONAME],
|
m4_define([_LT_WITH_AIX_SONAME],
|
||||||
[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl
|
[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl
|
||||||
shared_archive_member_spec=
|
shared_archive_member_spec=
|
||||||
case $host,$enable_shared in
|
case $host,$enable_shared in
|
||||||
power*-*-aix[[5-9]]*,yes)
|
power*-*-aix[[5-9]]*,yes)
|
||||||
AC_MSG_CHECKING([which variant of shared library versioning to provide])
|
AC_MSG_CHECKING([which variant of shared library versioning to provide])
|
||||||
AC_ARG_WITH([aix-soname],
|
AC_ARG_ENABLE([aix-soname],
|
||||||
[AS_HELP_STRING([--with-aix-soname=aix|svr4|both],
|
[AS_HELP_STRING([--enable-aix-soname=aix|svr4|both],
|
||||||
[shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],
|
[shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],
|
||||||
|
[case $enableval in
|
||||||
|
aix|svr4|both)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_MSG_ERROR([Unknown argument to --enable-aix-soname])
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
lt_cv_with_aix_soname=$enable_aix_soname],
|
||||||
|
[_AC_ENABLE_IF([with], [aix-soname],
|
||||||
[case $withval in
|
[case $withval in
|
||||||
aix|svr4|both)
|
aix|svr4|both)
|
||||||
;;
|
;;
|
||||||
@ -344,8 +353,9 @@ power*-*-aix[[5-9]]*,yes)
|
|||||||
esac
|
esac
|
||||||
lt_cv_with_aix_soname=$with_aix_soname],
|
lt_cv_with_aix_soname=$with_aix_soname],
|
||||||
[AC_CACHE_VAL([lt_cv_with_aix_soname],
|
[AC_CACHE_VAL([lt_cv_with_aix_soname],
|
||||||
[lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)
|
[lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)])
|
||||||
with_aix_soname=$lt_cv_with_aix_soname])
|
enable_aix_soname=$lt_cv_with_aix_soname])
|
||||||
|
with_aix_soname=$enable_aix_soname
|
||||||
AC_MSG_RESULT([$with_aix_soname])
|
AC_MSG_RESULT([$with_aix_soname])
|
||||||
if test aix != "$with_aix_soname"; then
|
if test aix != "$with_aix_soname"; then
|
||||||
# For the AIX way of multilib, we name the shared archive member
|
# For the AIX way of multilib, we name the shared archive member
|
||||||
@ -376,13 +386,32 @@ LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])])
|
|||||||
|
|
||||||
# _LT_WITH_PIC([MODE])
|
# _LT_WITH_PIC([MODE])
|
||||||
# --------------------
|
# --------------------
|
||||||
# implement the --with-pic flag, and support the 'pic-only' and 'no-pic'
|
# implement the --enable-pic flag, and support the 'pic-only' and 'no-pic'
|
||||||
# LT_INIT options.
|
# LT_INIT options.
|
||||||
# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'.
|
# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'.
|
||||||
m4_define([_LT_WITH_PIC],
|
m4_define([_LT_WITH_PIC],
|
||||||
[AC_ARG_WITH([pic],
|
[AC_ARG_ENABLE([pic],
|
||||||
[AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
|
[AS_HELP_STRING([--enable-pic@<:@=PKGS@:>@],
|
||||||
[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
|
[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
|
||||||
|
[lt_p=${PACKAGE-default}
|
||||||
|
case $enableval in
|
||||||
|
yes|no) pic_mode=$enableval ;;
|
||||||
|
*)
|
||||||
|
pic_mode=default
|
||||||
|
# Look at the argument we got. We use all the common list separators.
|
||||||
|
lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
|
||||||
|
for lt_pkg in $enableval; do
|
||||||
|
IFS=$lt_save_ifs
|
||||||
|
if test "X$lt_pkg" = "X$lt_p"; then
|
||||||
|
pic_mode=yes
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS=$lt_save_ifs
|
||||||
|
;;
|
||||||
|
esac],
|
||||||
|
[dnl Continue to support --with-pic and --without-pic, for backward
|
||||||
|
dnl compatibility.
|
||||||
|
_AC_ENABLE_IF([with], [pic],
|
||||||
[lt_p=${PACKAGE-default}
|
[lt_p=${PACKAGE-default}
|
||||||
case $withval in
|
case $withval in
|
||||||
yes|no) pic_mode=$withval ;;
|
yes|no) pic_mode=$withval ;;
|
||||||
@ -399,7 +428,8 @@ m4_define([_LT_WITH_PIC],
|
|||||||
IFS=$lt_save_ifs
|
IFS=$lt_save_ifs
|
||||||
;;
|
;;
|
||||||
esac],
|
esac],
|
||||||
[pic_mode=m4_default([$1], [default])])
|
[pic_mode=m4_default([$1], [default])])]
|
||||||
|
)
|
||||||
|
|
||||||
_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
|
_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
|
||||||
])# _LT_WITH_PIC
|
])# _LT_WITH_PIC
|
||||||
|
2
scripts/autoconf/ltsugar.m4
vendored
2
scripts/autoconf/ltsugar.m4
vendored
@ -1,6 +1,6 @@
|
|||||||
# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
|
# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
|
||||||
#
|
#
|
||||||
# Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2022 Free Software
|
# Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2024 Free Software
|
||||||
# Foundation, Inc.
|
# Foundation, Inc.
|
||||||
# Written by Gary V. Vaughan, 2004
|
# Written by Gary V. Vaughan, 2004
|
||||||
#
|
#
|
||||||
|
12
scripts/autoconf/ltversion.m4
vendored
12
scripts/autoconf/ltversion.m4
vendored
@ -1,6 +1,6 @@
|
|||||||
# ltversion.m4 -- version numbers -*- Autoconf -*-
|
# ltversion.m4 -- version numbers -*- Autoconf -*-
|
||||||
#
|
#
|
||||||
# Copyright (C) 2004, 2011-2019, 2021-2022 Free Software Foundation,
|
# Copyright (C) 2004, 2011-2019, 2021-2024 Free Software Foundation,
|
||||||
# Inc.
|
# Inc.
|
||||||
# Written by Scott James Remnant, 2004
|
# Written by Scott James Remnant, 2004
|
||||||
#
|
#
|
||||||
@ -10,15 +10,15 @@
|
|||||||
|
|
||||||
# @configure_input@
|
# @configure_input@
|
||||||
|
|
||||||
# serial 4245 ltversion.m4
|
# serial 4441 ltversion.m4
|
||||||
# This file is part of GNU Libtool
|
# This file is part of GNU Libtool
|
||||||
|
|
||||||
m4_define([LT_PACKAGE_VERSION], [2.4.7])
|
m4_define([LT_PACKAGE_VERSION], [2.5.4])
|
||||||
m4_define([LT_PACKAGE_REVISION], [2.4.7])
|
m4_define([LT_PACKAGE_REVISION], [2.5.4])
|
||||||
|
|
||||||
AC_DEFUN([LTVERSION_VERSION],
|
AC_DEFUN([LTVERSION_VERSION],
|
||||||
[macro_version='2.4.7'
|
[macro_version='2.5.4'
|
||||||
macro_revision='2.4.7'
|
macro_revision='2.5.4'
|
||||||
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
||||||
_LT_DECL(, macro_revision, 0)
|
_LT_DECL(, macro_revision, 0)
|
||||||
])
|
])
|
||||||
|
2
scripts/autoconf/lt~obsolete.m4
vendored
2
scripts/autoconf/lt~obsolete.m4
vendored
@ -1,6 +1,6 @@
|
|||||||
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
|
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
|
||||||
#
|
#
|
||||||
# Copyright (C) 2004-2005, 2007, 2009, 2011-2019, 2021-2022 Free
|
# Copyright (C) 2004-2005, 2007, 2009, 2011-2019, 2021-2024 Free
|
||||||
# Software Foundation, Inc.
|
# Software Foundation, Inc.
|
||||||
# Written by Scott James Remnant, 2004.
|
# Written by Scott James Remnant, 2004.
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user