summaryrefslogtreecommitdiff
path: root/build-aux/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/bootstrap')
-rwxr-xr-xbuild-aux/bootstrap22
1 files changed, 21 insertions, 1 deletions
diff --git a/build-aux/bootstrap b/build-aux/bootstrap
index f76db9aea2..3c39f4a524 100755
--- a/build-aux/bootstrap
+++ b/build-aux/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
# Print a version string.
-scriptversion=2011-08-11.17; # UTC
+scriptversion=2011-12-07.20; # UTC
# Bootstrap this package from checked-out sources.
@@ -473,6 +473,26 @@ if test $use_libtool = 1; then
find_tool LIBTOOLIZE glibtoolize libtoolize
fi
+case $buildreq in
+ automake) ;;
+ *) buildreq="automake 1.9
+$buildreq" ;;
+esac
+case $buildreq in
+ autoconf) ;;
+ *) buildreq="autoconf 2.59
+$buildreq" ;;
+esac
+if test ! -d "$local_gl_dir" \
+ || find "$local_gl_dir" -name '*.diff' -exec false {} +; then
+ :
+else
+ case $buildreq in
+ patch) ;;
+ *) buildreq="patch -
+$buildreq" ;;
+ esac
+fi
if ! printf "$buildreq" | check_versions; then
echo >&2
if test -f README-prereq; then