Updated Spanish translation
[platform/upstream/glib.git] / autogen.sh
index f866361..3e9e847 100755 (executable)
@@ -16,7 +16,7 @@ have_libtool=false
 if libtoolize --version < /dev/null > /dev/null 2>&1 ; then
        libtool_version=`libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
        case $libtool_version in
-           1.4*|1.5*)
+           1.4*|1.5*|2.2*)
                have_libtool=true
                ;;
        esac
@@ -45,16 +45,20 @@ fi
        DIE=1
 }
 
-if automake-1.9 --version < /dev/null > /dev/null 2>&1 ; then
+if automake-1.10 --version < /dev/null > /dev/null 2>&1 ; then
+    AUTOMAKE=automake-1.10
+    ACLOCAL=aclocal-1.10
+else if automake-1.9 --version < /dev/null > /dev/null 2>&1 ; then
     AUTOMAKE=automake-1.9
     ACLOCAL=aclocal-1.9
-else
+else 
        echo
-       echo "You must have automake 1.9.x installed to compile $PROJECT."
+       echo "You must have automake 1.9.x or 1.10.x installed to compile $PROJECT."
        echo "Install the appropriate package for your distribution,"
        echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
        DIE=1
 fi
+fi
 
 if test "$DIE" -eq 1; then
        exit 1
@@ -79,6 +83,23 @@ rm -rf autom4te.cache
 # regenerated from their corresponding *.in files by ./configure anyway.
 touch README INSTALL
 
+if [ ! -d build ]; then
+  if [ -x "`which svn`" ]; then
+    echo
+    echo "=============================================================="
+    echo "  your checkout doesn't contain build/."
+    echo "      fetching it from http://svn.gnome.org/svn/build/trunk/"
+    echo "=============================================================="
+    echo
+
+    svn checkout http://svn.gnome.org/svn/build/trunk/ build
+  else
+    echo
+    echo 'warning: build/ directory is missing and no "svn" to fetch it!'
+    echo
+  fi
+fi
+
 $ACLOCAL $ACLOCAL_FLAGS || exit $?
 
 libtoolize --force || exit $?