libpsl/autogen.sh

24 lines
562 B
Bash
Raw Normal View History

2014-03-20 17:17:24 +01:00
# !/bin/sh -e
if test -z `which autoreconf`; then
2014-03-24 15:53:33 +01:00
echo "No 'autoreconf' found. You must install the autoconf package."
exit 1
fi
if test -z `which idn2`; then
echo "No 'idn2' found. You must install the idn2 package."
2014-03-20 17:17:24 +01:00
exit 1
fi
mkdir m4 2>/dev/null
autoreconf --install --force --symlink || exit $?
echo
echo "----------------------------------------------------------------"
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
echo "./configure"
echo