1#!/bin/sh
2#
3echo "Generating build information using autoconf"
4echo "This may take a while ..."
5
6# Regenerate configuration files
7cat acinclude/* >aclocal.m4
8found=false
9for autoconf in autoconf autoconf259 autoconf-2.59
10do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
11done
12if test x$found = xfalse; then
13    echo "Couldn't find autoconf, aborting"
14    exit 1
15fi
16
17# Run configure for this platform
18echo "Now you are ready to run ./configure"
19