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:
parent
0ecfa9701f
commit
6326daa9ae
@ -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
|
||||
|
10
autogen.sh
10
autogen.sh
@ -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."
|
||||
|
Loading…
Reference in New Issue
Block a user