diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-04-24 17:59:49 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-04-24 17:59:49 (GMT) |
commit | b962171414aa2cfe3dbfbd4294819a4153a7bd6c (patch) | |
tree | ce5535c3dc4ad93cd513979d2679b8a92526345e /configure.in | |
parent | d85594869de9b6c10c02b413eec00976e6f19622 (diff) | |
download | cpython-b962171414aa2cfe3dbfbd4294819a4153a7bd6c.zip cpython-b962171414aa2cfe3dbfbd4294819a4153a7bd6c.tar.gz cpython-b962171414aa2cfe3dbfbd4294819a4153a7bd6c.tar.bz2 |
- Issue #8510: Update to autoconf2.65.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 4feb4a3..f397f79 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,6 @@ dnl *********************************************** dnl * Please run autoreconf to test your changes! * dnl *********************************************** -dnl NOTE: autoconf 2.64 doesn't seem to work (use 2.61). # Set VERSION so we only need to edit in one place (i.e., here) m4_define(PYTHON_VERSION, 3.2) @@ -13,7 +12,7 @@ m4_define([version_required], [], [m4_fatal([Autoconf version $1 is required for Python], 63)]) ]) -version_required(2.61) +version_required(2.65) AC_REVISION($Revision$) AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/) @@ -553,10 +552,6 @@ hp*|HP*) case $CC in cc|*/cc) CC="$CC -Ae";; esac;; -SunOS*) - # Some functions have a prototype only with that define, e.g. confstr - AC_DEFINE(__EXTENSIONS__, 1, [Defined on Solaris to see additional function prototypes.]) - ;; esac |