# $Id: bootstrap 45562 2016-08-29 08:24:54Z joostvb $
# $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
}

svn2cl -i

# 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

# shipped with Debian 8 "jessie"
AUTOMAKE=automake-1.14 ACLOCAL=aclocal-1.14 autoreconf --install --symlink --verbose

# 9   stretch 2017-02?                           1.15?
# 8   jessie  2015-04                         1.14
# 7   wheezy  2013-05                      1.11
# 6   squeeze 2011-02      1.4 1.7 1.9  1.10


