diff options
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 |