diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2021-02-16 18:24:19 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2021-02-16 18:24:19 +0100 |
commit | 351b7328520c16730ceb46e5acae16038c42185e (patch) | |
tree | fae21fd5c94f3c3ed0202a95c9ada705482e647b /autogen.sh | |
parent | ad38bc6ecb80ddeb562841b33258dd53659b1da6 (diff) |
New upstream version 1.0.32upstream/1.0.32
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 26 |
1 files changed, 24 insertions, 2 deletions
@@ -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 |