diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-01-16 23:33:03 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-01-16 23:38:29 +0100 |
commit | c01fe25538498a3aea997df23161704faa874d66 (patch) | |
tree | 5059960c104329d838d8c49907788375ec733995 /configure.ac | |
parent | e60703923c8d57bcf049f8037b4777f52ae3ba3f (diff) | |
download | fetchmail-c01fe25538498a3aea997df23161704faa874d66.tar.gz fetchmail-c01fe25538498a3aea997df23161704faa874d66.tar.bz2 fetchmail-c01fe25538498a3aea997df23161704faa874d66.zip |
configure.ac: Require Python >= 2.7
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index af0b1091..409cabba 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ dnl python is optional # to disable python detection and continue without building/installing # fetchmail.conf -- be sure to check README.packaging, too! # -AM_PATH_PYTHON(2.3,,AC_MSG_WARN([Disabling fetchmailconf: python 2.3 or greater not found])) +AM_PATH_PYTHON(2.7,,AC_MSG_WARN([Disabling fetchmailconf: python 2.7 or greater not found])) AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :]) AC_USE_SYSTEM_EXTENSIONS |