1998-01-31 17:43:56 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
1998-11-25 16:34:23 +00:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
1998-11-25 17:13:14 +00:00
|
|
|
ORIGDIR=`pwd`
|
|
|
|
cd $srcdir
|
1998-09-08 04:08:17 +00:00
|
|
|
PROJECT=Gtk+
|
|
|
|
TEST_TYPE=-d
|
|
|
|
FILE=gdk
|
|
|
|
|
1998-01-31 17:43:56 +00:00
|
|
|
DIE=0
|
|
|
|
|
|
|
|
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
|
|
echo
|
1998-09-08 04:08:17 +00:00
|
|
|
echo "You must have autoconf installed to compile $PROJECT."
|
1998-01-31 17:43:56 +00:00
|
|
|
echo "Download the appropriate package for your distribution,"
|
|
|
|
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
|
|
|
DIE=1
|
|
|
|
}
|
|
|
|
|
|
|
|
(libtool --version) < /dev/null > /dev/null 2>&1 || {
|
|
|
|
echo
|
1998-09-08 04:08:17 +00:00
|
|
|
echo "You must have libtool installed to compile $PROJECT."
|
1998-10-10 07:51:50 +00:00
|
|
|
echo "Get ftp://alpha.gnu.org/gnu/libtool-1.2b.tar.gz"
|
1998-01-31 17:43:56 +00:00
|
|
|
echo "(or a newer version if it is available)"
|
|
|
|
DIE=1
|
|
|
|
}
|
|
|
|
|
|
|
|
(automake --version) < /dev/null > /dev/null 2>&1 || {
|
|
|
|
echo
|
1998-09-08 04:08:17 +00:00
|
|
|
echo "You must have automake installed to compile $PROJECT."
|
1998-01-31 17:43:56 +00:00
|
|
|
echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
|
|
|
|
echo "(or a newer version if it is available)"
|
|
|
|
DIE=1
|
|
|
|
}
|
|
|
|
|
|
|
|
if test "$DIE" -eq 1; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
1998-09-08 04:08:17 +00:00
|
|
|
test $TEST_TYPE $FILE || {
|
|
|
|
echo "You must run this script in the top-level $PROJECT directory"
|
1998-01-31 17:43:56 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if test -z "$*"; then
|
|
|
|
echo "I am going to run ./configure with no arguments - if you wish "
|
|
|
|
echo "to pass any to it, please specify them on the $0 command line."
|
|
|
|
fi
|
|
|
|
|
1998-09-08 04:08:17 +00:00
|
|
|
case $CC in
|
1998-10-26 03:12:19 +00:00
|
|
|
*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
|
1998-09-08 04:08:17 +00:00
|
|
|
esac
|
|
|
|
|
1998-12-15 22:13:35 +00:00
|
|
|
echo "Running gettextize... Ignore non-fatal messages."
|
|
|
|
# Hmm, we specify --force here, since otherwise things dont'
|
|
|
|
# get added reliably, but we don't want to overwrite intl
|
|
|
|
# while making dist.
|
|
|
|
echo "no" | gettextize --copy --force
|
|
|
|
|
1998-12-16 01:40:50 +00:00
|
|
|
# We don't need ./intl
|
|
|
|
rm -rf intl
|
|
|
|
|
|
|
|
aclocal $ACLOCAL_FLAGS
|
|
|
|
|
1998-09-08 04:08:17 +00:00
|
|
|
# optionally feature autoheader
|
|
|
|
(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader
|
|
|
|
|
1998-09-08 09:24:22 +00:00
|
|
|
automake $am_opt
|
|
|
|
autoconf
|
1998-11-25 17:13:14 +00:00
|
|
|
cd $ORIGDIR
|
1998-09-08 09:24:22 +00:00
|
|
|
|
1998-11-25 16:34:23 +00:00
|
|
|
$srcdir/configure "$@"
|
1998-01-31 17:43:56 +00:00
|
|
|
|
|
|
|
echo
|
1998-09-08 04:08:17 +00:00
|
|
|
echo "Now type 'make' to compile $PROJECT."
|