summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-07-17 17:12:51 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-07-17 17:12:51 +0000
commit99df4964d667e87e5734aba698014dfabe1a5516 (patch)
treebd1e28855c641ed055fd238f29bca14c624154e4 /autogen.sh
parent11547940d93016d88929334ed072d4a9d1cd8408 (diff)
downloadtelepathy-glib-99df4964d667e87e5734aba698014dfabe1a5516.tar.gz
autogen.sh, configure.ac: depend on automake 1.9
Debian unstable no longer has 1.8, which is after all 4 years old, and Maemo 4.1 has 1.9. 20080717171251-53eee-2f2186b4d8d142c12849462a213ef4803e9868b9.gz
Diffstat (limited to 'autogen.sh')
-rw-r--r--autogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index a2f9c10e7..37db6a182 100644
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,13 +5,13 @@ gtkdocize
if test -n "$AUTOMAKE"; then
: # don't override an explicit user request
-elif automake-1.8 --version >/dev/null 2>/dev/null && \
- aclocal-1.8 --version >/dev/null 2>/dev/null; then
+elif automake-1.9 --version >/dev/null 2>/dev/null && \
+ aclocal-1.9 --version >/dev/null 2>/dev/null; then
# If we have automake-1.8, use it. This helps to ensure that our build
- # system doesn't accidentally grow automake-1.9 dependencies.
- AUTOMAKE=automake-1.8
+ # system doesn't accidentally grow automake-1.10 dependencies.
+ AUTOMAKE=automake-1.9
export AUTOMAKE
- ACLOCAL=aclocal-1.8
+ ACLOCAL=aclocal-1.9
export ACLOCAL
fi