summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh26
1 files changed, 24 insertions, 2 deletions
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