blob: 78bb055c5e021a900c9cd37caaef3f406068570d [file] [log] [blame]
#!/bin/sh
# Use this script to re-create configure. Requires the following auto-tools,
# autoconf >= 2.59
# automake >= 1.10
# libtool >= 1.4
#!/bin/bash
if (glibtoolize -f -c 2>/dev/null || libtoolize -f -c) && aclocal -I config && autoheader && automake --foreign --add-missing --copy && autoconf
then
echo "Success bootstrapping libmonit"
else
echo "Failed bootstrapping libmonit"
exit 1;
fi
exit 0;