From: Guilhem Bonnefille Date: Thu, 5 Dec 2013 23:37:35 +0000 (+0000) Subject: Fix autogen.sh in order to install needed files X-Git-Url: https://git.street.me.uk/andy/viking.git/commitdiff_plain/b6a964fe8f3daa02149856523d7643fdc2882031?hp=0ab355252e7f5431a1765140520acb79bcf7a5cb Fix autogen.sh in order to install needed files Signed-off-by: Rob Norris --- diff --git a/autogen.sh b/autogen.sh index 0ef7c28b..46f4a3d4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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,7 +36,9 @@ if test -z `which autopoint`; then exit 1 fi -autopoint --force +gnome-doc-prepare --automake --copy --force || exit $? +gtkdocize --copy || exit $? +autopoint --force || exit $? AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose || exit $? cd "$olddir"