diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-08-02 01:20:23 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-08-02 01:20:23 +0000 |
commit | aab18800bcf364ee5d3f34f96fb88ceec2b50bb9 (patch) | |
tree | ebe8f342c0f753184748b4e78bbe6b2d72655b1a /configure.ac | |
parent | 2cabbf89f9f696a4786476a4eda7a59a1c16d486 (diff) | |
download | fetchmail-aab18800bcf364ee5d3f34f96fb88ceec2b50bb9.tar.gz fetchmail-aab18800bcf364ee5d3f34f96fb88ceec2b50bb9.tar.bz2 fetchmail-aab18800bcf364ee5d3f34f96fb88ceec2b50bb9.zip |
Rename fetchmailconf to fetchmailconf.py.
Add a shell wrapper script fetchmailconf (with @PYTHON@ substituted).
Use automake's PYTHON mode to byte-compile the script at install time.
svn path=/trunk/; revision=4220
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 74736db5..34aeadbb 100644 --- a/configure.ac +++ b/configure.ac @@ -13,6 +13,9 @@ 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 the : states that python is optional +AM_PATH_PYTHON(2.0,,:) + AC_PROG_AWK AC_PROG_CC AC_PROG_INSTALL @@ -736,7 +739,7 @@ if test "$needtrio" = 1 ; then fi dnl ----------------------------------------------------------------' -AC_CONFIG_FILES([Makefile m4/Makefile +AC_CONFIG_FILES([Makefile m4/Makefile fetchmailconf po/Makefile.in]) AC_OUTPUT |