X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=autogen.sh;h=c1603ea64051039a234ea491b2c43bd0b89a4850;hb=d901af03035620e2c958f4d7a6eededfa0bce8af;hp=50cfe962084f4d457b5aa0d1db585cd272ced9dd;hpb=f4398500f5a7fbe6236d5573170f8e359823d87e;p=geeqie.git diff --git a/autogen.sh b/autogen.sh index 50cfe962..c1603ea6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -24,23 +24,37 @@ DIE=0 DIE=1 } -grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.in >/dev/null && { - grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ +(grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.in >/dev/null) && { + (grep "sed.*POTFILES" $srcdir/configure.in) >/dev/null || \ (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`glib-gettextize' installed." - echo "glib-gettextize is a part of glib" + echo "glib-gettextize is a part of glib." + echo "You can get it from: ftp://ftp.gtk.org/pub/gtk" DIE=1 } } +(intltoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`intltoolize' installed" + DIE=1 +} + +(automake --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`automake' installed." + echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" + DIE=1 + NO_AUTOMAKE=yes +} + # if no automake, don't bother testing for aclocal test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: Missing \`aclocal'. The version of \`automake'" echo "installed doesn't appear recent enough." - echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" - echo "(or a newer version if it is available)" + echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/" DIE=1 } @@ -60,6 +74,12 @@ xlc ) am_opt=--include-deps;; esac +auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *( *\([^ )]*\).*/\1/p' $srcdir/configure.in`" +if test -n "$auxdir"; then + if test ! -d "$srcdir/$auxdir"; then + mkdir -p "$srcdir/$auxdir" + fi fi + for coin in `find $srcdir -name configure.in -print` do dr=`dirname $coin` @@ -85,6 +105,12 @@ do test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 echo "Running glib-gettextize..." echo "no" | glib-gettextize --force --copy + echo "Running intltoolize" + intltoolize --copy --force --automake + if intltoolize --version | grep -q ' 0.40.6'; then + echo "Workaround intltoolize 0.40.6 bug (LINGUAS)" + sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in + fi echo "Making $dr/aclocal.m4 writable ..." test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi @@ -103,7 +129,7 @@ do fi done -conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c +conf_flags="--enable-maintainer-mode" #--enable-iso-c if test x$NOCONFIGURE = x; then echo Running $srcdir/configure $conf_flags "$@" ...