summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2005-01-10 17:06:42 +0000
committerJohan Dahlin <johan@src.gnome.org>2005-01-10 17:06:42 +0000
commit3b76494e2546564e672f0979d22bf69c9d3ff0fb (patch)
tree2abfc35563e36b659dddbcbefa5a6db597165213 /autogen.sh
parentbadc79be87df0fe8c94dcf39d42ff3e00db42dda (diff)
downloadpygtk-3b76494e2546564e672f0979d22bf69c9d3ff0fb.tar.gz
Check for automake-1.9 aswell, fixes 162396 (Raphael Kubo da Costa)
* autogen.sh: Check for automake-1.9 aswell, fixes 162396 (Raphael Kubo da Costa)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index d45b82e6..8f9286f8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -262,10 +262,11 @@ AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/`
case $REQUIRED_AUTOMAKE_VERSION in
1.4*) automake_progs="automake-1.4" ;;
- 1.5*) automake_progs="automake-1.5 automake-1.6 automake-1.7 automake-1.8" ;;
- 1.6*) automake_progs="automake-1.6 automake-1.7 automake-1.8" ;;
- 1.7*) automake_progs="automake-1.7 automake-1.8" ;;
- 1.8*) automake_progs="automake-1.8" ;;
+ 1.5*) automake_progs="automake-1.5 automake-1.6 automake-1.7 automake-1.8 automake-1.9" ;;
+ 1.6*) automake_progs="automake-1.6 automake-1.7 automake-1.8 automake-1.9" ;;
+ 1.7*) automake_progs="automake-1.7 automake-1.8 automake-1.9" ;;
+ 1.8*) automake_progs="automake-1.8 automake-1.9" ;;
+ 1.9*) automake_progs="automake-1.9" ;;
esac
version_check automake AUTOMAKE "$automake_progs" $REQUIRED_AUTOMAKE_VERSION \
"http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz" || DIE=1