]> git.street.me.uk Git - andy/viking.git/blobdiff - autogen.sh
[DOC] Mention XML configuration can override internal defaults.
[andy/viking.git] / autogen.sh
index e7faa52a243cb631f0b1da8fcb555170f9f50a1d..46f4a3d4f5fa8c05982cc90765f52af676a6ea8a 100755 (executable)
@@ -13,6 +13,18 @@ if test -z $INTLTOOLIZE; then
         exit 1
 fi
 
+GTK_DOC=`which gtkdocize`
+if test -z $GTK_DOC; then
+        echo "*** No gtkdocize found, please install the gtk-doc-tools package ***"
+        exit 1
+fi
+
+GNOME_DOC=`which gnome-doc-prepare`
+if test -z $GNOME_DOC; then
+        echo "*** No gnome-doc-prepare found, please install the gnome-doc-utils package ***"
+        exit 1
+fi
+
 AUTORECONF=`which autoreconf`
 if test -z $AUTORECONF; then
         echo "*** No autoreconf found, please install it ***"
@@ -24,8 +36,10 @@ if test -z `which autopoint`; then
         exit 1
 fi
 
-autopoint --force
-AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
+gnome-doc-prepare --automake --copy --force || exit $?
+gtkdocize --copy || exit $?
+autopoint --force || exit $?
+AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose || exit $?
 
 cd "$olddir"
 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"