2008-04-17 Emmanuele Bassi <ebassi@openedhand.com>

* autogen.sh: Try to continue even if we don't have gtk-doc
	installed; this will obviously won't work if you don't pass
	--disable-docs --disable-gtk-doc to autogen.sh as well.
This commit is contained in:
Emmanuele Bassi 2008-04-17 10:41:03 +00:00
parent 0ecfa9701f
commit 6326daa9ae
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-04-17 Emmanuele Bassi <ebassi@openedhand.com>
* autogen.sh: Try to continue even if we don't have gtk-doc
installed; this will obviously won't work if you don't pass
--disable-docs --disable-gtk-doc to autogen.sh as well.
2008-04-17 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-fixed.[ch]: Add a ClutterFixed fundamental

View File

@ -12,11 +12,17 @@ test $TEST_TYPE $FILE || {
exit 1
}
gtkdocize || exit $?
GTKDOCIZE=`which gtkdocize`
if test -z $GTKDOCIZE; then
echo "*** No gtk-doc support ***"
touch gtk-doc.make
else
gtkdocize || exit $?
fi
# back in the stupidity of autoreconf
autoreconf -v --install || exit $?
./configure "$@" ${GTK_DOC_ARGS}
./configure "$@"
echo "Now type 'make' to compile $PROJECT."