diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2008-06-24 13:06:51 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2008-06-24 13:06:51 +0000 |
commit | f78abd402964b9fea113da5c7660b9dddaa0c06e (patch) | |
tree | b93ba2359be8cf9dd4390f9d76121c159ab2db7d /configure.ac | |
parent | 2346deb7de255d0111290413b37ce8bd69d1ed3a (diff) | |
download | fetchmail-f78abd402964b9fea113da5c7660b9dddaa0c06e.tar.gz fetchmail-f78abd402964b9fea113da5c7660b9dddaa0c06e.tar.bz2 fetchmail-f78abd402964b9fea113da5c7660b9dddaa0c06e.zip |
Fix one more CVE-2008-2711 va_start() messup. Found by Petr Uzel.
Bump release to -rc2.
svn path=/branches/BRANCH_6-3/; revision=5205
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 f972b547..7364a2fa 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ dnl Autoconfigure input file for fetchmail dnl Process this file with autoconf to produce a configure script. dnl -AC_INIT([fetchmail],[6.3.9-rc1],[fetchmail-users@lists.berlios.de]) +AC_INIT([fetchmail],[6.3.9-rc2],[fetchmail-users@lists.berlios.de]) AC_CONFIG_SRCDIR([fetchmail.h]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_LIBOBJ_DIR([.]) @@ -61,6 +61,9 @@ AC_CHECK_HEADERS([unistd.h termios.h termio.h sgtty.h stdarg.h \ sys/itimer.h fcntl.h sys/fcntl.h memory.h sys/wait.h \ arpa/inet.h arpa/nameser.h netinet/in.h net/socket.h netdb.h \ sys/select.h sys/socket.h sys/time.h langinfo.h]) +if test _$ac_cv_header_stdarg_h != _yes ; then +AC_MSG_WARN([stdarg.h is not defined. Unsupported configuration, proceed at your own risk.]) +fi AC_CHECK_TYPE(u_int32_t,, AC_DEFINE(u_int32_t,unsigned int, [Define to unsigned int if <sys/types.h> does not define.]), |