libpsl/autogen.sh

37 lines
872 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
2014-04-02 10:27:13 +02:00
GTKDOCIZE=`which gtkdocize 2>/dev/null`
if test -z $GTKDOCIZE; then
echo "No gtk-doc support found. You can't build the docs."
echo "EXTRA_DIST =" >gtk-doc.make
echo "CLEANFILES =" >>gtk-doc.make
else
gtkdocize || exit $?
fi
2014-03-20 17:17:24 +01:00
mkdir m4 2>/dev/null
autoreconf --install --force --symlink || exit $?
echo
echo "----------------------------------------------------------------"
echo "Initialized build system. For a common configuration please run:"
echo "----------------------------------------------------------------"
echo
2014-04-02 10:27:13 +02:00
if test -z $GTKDOCIZE; then
echo "./configure"
else
echo "./configure --enable-gtk-doc"
fi
2014-03-20 17:17:24 +01:00
echo