diff options
author | Tim Janik <timj@gtk.org> | 1998-09-08 04:08:17 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-09-08 04:08:17 +0000 |
commit | e33741aed6ba496d959eb81de177717167349500 (patch) | |
tree | e77281ab4f35e74a783cb5c5ac07f50a2f096994 /autogen.sh | |
parent | f830dc3f36863a1bc3a9dfec4c85afdba911cecc (diff) | |
download | gdk-pixbuf-e33741aed6ba496d959eb81de177717167349500.tar.gz |
use g_atexit() instead of ATEXIT.
Tue Sep 8 05:19:51 1998 Tim Janik <timj@gtk.org>
* gdk/gdk.c (gdk_init): use g_atexit() instead of ATEXIT.
* gtk/gtkmain.c (gtk_init): use g_atexit() instead of ATEXIT.
* gtk/gtkobject.c (gtk_object_init_type): use g_atexit() instead of
ATEXIT.
* ltconfig: use GLib's ltconfig which honours lcc.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh index f4a29b18c..2f48d79b4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,11 +1,15 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. +PROJECT=Gtk+ +TEST_TYPE=-d +FILE=gdk + DIE=0 (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo - echo "You must have autoconf installed to compile GTK+." + echo "You must have autoconf installed to compile $PROJECT." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 @@ -13,7 +17,7 @@ DIE=0 (libtool --version) < /dev/null > /dev/null 2>&1 || { echo - echo "You must have libtool installed to compile GTK+." + echo "You must have libtool installed to compile $PROJECT." echo "Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz" echo "(or a newer version if it is available)" DIE=1 @@ -21,7 +25,7 @@ DIE=0 (automake --version) < /dev/null > /dev/null 2>&1 || { echo - echo "You must have automake installed to compile GTK+." + echo "You must have automake installed to compile $PROJECT." 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 @@ -31,8 +35,8 @@ if test "$DIE" -eq 1; then exit 1 fi -test -d gtk || { - echo "You must run this script in the top-level GTK+ directory" +test $TEST_TYPE $FILE || { + echo "You must run this script in the top-level $PROJECT directory" exit 1 } @@ -41,10 +45,17 @@ if test -z "$*"; then echo "to pass any to it, please specify them on the $0 command line." fi +case $CC in +*lcc | *lcc\ *) am_opt=--include-deps;; +esac + aclocal $ACLOCAL_FLAGS -automake +automake $am_opt autoconf +# optionally feature autoheader +(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader + ./configure "$@" echo -echo "Now type 'make' to compile GTK+." +echo "Now type 'make' to compile $PROJECT." |