]> Pileus Git - ~andy/gtk/blobdiff - autogen.sh
Provide a hacked version of the gettext macros that never use the included
[~andy/gtk] / autogen.sh
index 8be840c55ef0d0d99c5ccb82915528410a99da76..76d24de3a1d92449562a1140fbe80f93a6007f53 100755 (executable)
@@ -1,6 +1,11 @@
 #!/bin/sh
 # Run this to generate all the initial makefiles, etc.
 
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
 PROJECT=Gtk+
 TEST_TYPE=-d
 FILE=gdk
@@ -18,7 +23,7 @@ DIE=0
 (libtool --version) < /dev/null > /dev/null 2>&1 || {
        echo
        echo "You must have libtool installed to compile $PROJECT."
-       echo "Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz"
+       echo "Get ftp://alpha.gnu.org/gnu/libtool-1.2b.tar.gz"
        echo "(or a newer version if it is available)"
        DIE=1
 }
@@ -46,7 +51,7 @@ if test -z "$*"; then
 fi
 
 case $CC in
-*lcc | *lcc\ *) am_opt=--include-deps;;
+*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
 esac
 
 aclocal $ACLOCAL_FLAGS
@@ -56,8 +61,9 @@ aclocal $ACLOCAL_FLAGS
 
 automake $am_opt
 autoconf
+cd $ORIGDIR
 
-./configure "$@"
+$srcdir/configure "$@"
 
 echo 
 echo "Now type 'make' to compile $PROJECT."