X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=autogen.sh;h=9c061ca5ad4610577fdd86ca71651548c4b0962a;hb=8ef6e816ba9c55188181a00ae23b181bb09c5526;hp=02e7c8908e37fea6cccb938d15d1fb55bfadaa66;hpb=85d4a577410f0bffec48cd54d2a55e37a718d176;p=rodin%2Fchimara.git diff --git a/autogen.sh b/autogen.sh index 02e7c89..9c061ca 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,21 +1,26 @@ #!/bin/sh ### autogen.sh with sensible comments ############################### +### CREATE MACRO DIRECTORY ########################################## +# Needed by Gtk-doc +mkdir -p m4 + ### GTK-DOC ######################################################### # Run before autotools echo "Setting up Gtk-Doc" -gtkdocize || exit 1 +gtkdocize --copy --flavour no-tmpl || exit 1 ### AUTOTOOLS ####################################################### # Runs autoconf, autoheader, aclocal, automake, autopoint, libtoolize echo "Regenerating autotools files" -autoreconf --install --symlink || exit 1 - -### GLIB-GETTEXT #################################################### -echo "Running glib-gettextize... Ignore non-fatal messages" -glib-gettextize --force --copy || exit 1 +autoreconf --force --install || exit 1 ### INTLTOOL ######################################################## -# Run after autopoint or glib-gettextize +# Run after autopoint echo "Setting up Intltool" intltoolize --copy --force --automake || exit 1 +# Hack to get intltool 0.40.0 to work (Debian stable) +touch intltool-extract.in +touch intltool-merge.in +touch intltool-update.in +