diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-11-27 15:23:27 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-11-27 15:23:27 +0000 |
commit | f750540a7bb3dd465cb562681a2606bd313469ad (patch) | |
tree | 6134b14fec0605fac81052cd5648f8275b9963a7 /configure.ac | |
parent | ac97ca8cae0b55f18bd3cd6a33363ea97136b1c9 (diff) | |
download | fetchmail-f750540a7bb3dd465cb562681a2606bd313469ad.tar.gz fetchmail-f750540a7bb3dd465cb562681a2606bd313469ad.tar.bz2 fetchmail-f750540a7bb3dd465cb562681a2606bd313469ad.zip |
Add rudimentary autobuild support.
Add a trivial self test, required for autobuild.
svn path=/trunk/; revision=4479
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 721029fc..52b672fa 100644 --- a/configure.ac +++ b/configure.ac @@ -16,6 +16,13 @@ dnl we may need a newer automake version - the oldest tested is 1.7 AC_PREREQ(2.59) AM_INIT_AUTOMAKE(1.5 foreign no-installinfo) +dnl autobuild support, see <http://josefsson.org/autobuild/> +( + TZ= + export TZ + AB_INIT +) + dnl python is optional AM_PATH_PYTHON(2.0,,AC_MSG_WARN([Disabling fetchmailconf: python 2.0 or greater not found])) AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :]) |