Ensure gobject-introspection is installed before running configure. Fixes #29861

This commit is contained in:
Richard Hughes 2010-08-29 11:16:26 +01:00
parent 2d087eaed6
commit 1acc2b4484

View File

@ -25,6 +25,12 @@ if ([ -z "$*" ] && [ "x$NOCONFIGURE" = "x" ]) ; then
echo
fi
# check for gobject-introspection-devel
(which g-ir-scanner &> /dev/null) || {
echo "**Error**: you don't have gobject-introspection installed"
exit 1
}
(cd $srcdir && gtkdocize) || exit 1
(cd $srcdir && autoreconf --force --install) || exit 1
(cd $srcdir && intltoolize) || exit 1