Fix #314: Remote commands for thumbnail maintenance
[geeqie.git] / autogen.sh
index 9779548..c1603ea 100755 (executable)
@@ -35,6 +35,12 @@ DIE=0
   }
 }
 
+(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."
@@ -68,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`
@@ -93,8 +105,11 @@ do
          test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
          echo "Running glib-gettextize..."
          echo "no" | glib-gettextize --force --copy
-         if [ -r po/Makefile.in.in.patch ]; then
-               patch po/Makefile.in.in < po/Makefile.in.in.patch
+         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
@@ -114,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 "$@" ...