From b6a964fe8f3daa02149856523d7643fdc2882031 Mon Sep 17 00:00:00 2001 From: Guilhem Bonnefille Date: Thu, 5 Dec 2013 23:37:35 +0000 Subject: [PATCH] Fix autogen.sh in order to install needed files Signed-off-by: Rob Norris --- autogen.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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" -- 2.39.5