# $Id: bootstrap 33935 2011-02-17 14:04:48Z anton $
# $URL: https://svn.uvt.nl/its-id/trunk/sources/accountchecker/bootstrap $

# hack as used in systraq
test -f acinclude.m4 || {
    if test -f /usr/share/autoconf-archive/ac_define_dir.m4
    then
        ln -s /usr/share/autoconf-archive/ac_define_dir.m4 acinclude.m4
    else
        cat <<EOT
You need the autoconf-archive Debian package, version >= 20031029-1.
Alternatively, you could please install the GNU Autoconf Macro Archive's
http://www.gnu.org/software/ac-archive/htmldoc/ac_define_dir.html as
acinclude.m4.
EOT
   fi
}

# Debian automake package installs as automake-version.  Use this
# to make sure the right automake is being used.
# if not installed, use: apt-get install automake1.9
aclocal-1.9 \
    && automake-1.9 --add-missing --verbose --gnu \
    && autoconf

