From 351b7328520c16730ceb46e5acae16038c42185e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Tue, 16 Feb 2021 18:24:19 +0100 Subject: New upstream version 1.0.32 --- autogen.sh | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 86bc40a..14febbb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -2,9 +2,31 @@ test -n "$srcdir" || srcdir=`dirname "$0"` test -n "$srcdir" || srcdir=. +patchdir="$srcdir/patches" + +# Suppress warnings about obsolete macros if still needed (#122) +ac_dir=$(aclocal --print-ac-dir) +if test -r "$ac_dir/ax_create_stdint_h.m4"; then + serial=$(awk '/#serial/{ print $2 }' "$ac_dir/ax_create_stdint_h.m4") + if test "$serial" -lt 21; then + m4_dir=$(cd $srcdir; autoconf -t 'AC_CONFIG_MACRO_DIR:$%') + target="$srcdir/$m4_dir/ax_create_stdint_h.m4" + echo "Copying file to $target" + cp "$ac_dir/ax_create_stdint_h.m4" "$srcdir/$m4_dir" + if test "$serial" -lt 20; then + echo "patching file $target to #serial 20" + patch --quiet $target \ + "$patchdir/ax_create_stdint_h.19-20.m4.patch" + fi + echo "patching file $target to #serial 21" + patch --quiet "$target" \ + "$patchdir/ax_create_stdint_h.20-21.m4.patch" + fi +fi + autoreconf --force --install --verbose --warnings=all "$srcdir" -patch "$srcdir/ltmain.sh" "$srcdir/ltmain.sh.patch" -patch "$srcdir/po/Rules-quot" "$srcdir/Rules-quot.patch" +patch "$srcdir/ltmain.sh" "$patchdir/ltmain.sh.patch" +patch "$srcdir/po/Rules-quot" "$patchdir/Rules-quot.patch" autoreconf "$srcdir" # Taken from https://gitlab.com/utsushi/utsushi/blob/master/bootstrap -- cgit v1.2.3