added check for idn2

This commit is contained in:
Tim Ruehsen 2014-03-24 15:53:33 +01:00
parent e379ba90cf
commit eaf4f01b78
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
# !/bin/sh -e
if test -z `which autoreconf`; then
echo "No autoreconf found. You must install the autoconf package."
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."
exit 1
fi