summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2003-07-24 15:06:08 +0000
committerJames Henstridge <jamesh@src.gnome.org>2003-07-24 15:06:08 +0000
commit509bdda1a0db371fccb1d3b8e11a90c8040aaaf9 (patch)
tree8c0801159e4bf2d57ac9f6d7338e524609245052 /autogen.sh
parent51c69a99945ad3d8f76414e59d6992fe1cae6fcb (diff)
downloadpygtk-509bdda1a0db371fccb1d3b8e11a90c8040aaaf9.tar.gz
same here.
2003-07-24 James Henstridge <james@daa.com.au> * gtk/pygtk.h (init_pygtk): same here. * pygobject.h (init_pygobject): convert fatal errors to normal exceptions. * gtk/gtkglmodule.c (initgl): same here. * gtk/libglademodule.c (initglade): same here. * gtk/gtkmodule.c (init_gtk): same here. * atkmodule.c (initatk): same here. * pangomodule.c (initpango): same here. * gobjectmodule.c (initgobject): don't cause fatal errors if an exception on init. * codegen/codegen.py (write_source): print an error message if it isn't possible to import a particular name from the module. * autogen.sh (DIE): require Automake 1.7. * configure.in (AC_ARG_ENABLE): enable thread support by default.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 46814170..0cdcde62 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -35,13 +35,10 @@ if test -z "$AUTOMAKE"; then
if automake-1.7 --version < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.7
ACLOCAL=aclocal-1.7
- elif automake-1.6 --version < /dev/null > /dev/null 2>&1; then
- AUTOMAKE=automake-1.6
- ACLOCAL=aclocal-1.6
else
echo
echo "You must have automake installed to compile $PROJECT."
- echo "Get ftp://ftp.gnu.org/pub/gnu/automake/automake-1.7.2.tar.gz"
+ echo "Get ftp://ftp.gnu.org/pub/gnu/automake/automake-1.7.6.tar.gz"
echo "(or a newer version if it is available)"
DIE=1
fi