Doesn't autoconf need to be run to regenerate configure?
On Thu, Oct 14, 2010 at 08:24, matthias.klose <python-check...@python.org> wrote: > Author: matthias.klose > Date: Thu Oct 14 17:24:22 2010 > New Revision: 85481 > > Log: > - Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd. > > > Modified: > python/branches/py3k/Misc/NEWS > python/branches/py3k/configure.in > > Modified: python/branches/py3k/Misc/NEWS > ============================================================================== > --- python/branches/py3k/Misc/NEWS (original) > +++ python/branches/py3k/Misc/NEWS Thu Oct 14 17:24:22 2010 > @@ -61,6 +61,11 @@ > > - Issue #7287: Demo/imputil/knee.py was removed. > > +Build > +----- > + > +- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd. > + > > What's New in Python 3.2 Alpha 3? > ================================= > > Modified: python/branches/py3k/configure.in > ============================================================================== > --- python/branches/py3k/configure.in (original) > +++ python/branches/py3k/configure.in Thu Oct 14 17:24:22 2010 > @@ -3652,7 +3652,8 @@ > esac > ;; > CYGWIN*) SO=.dll;; > - Linux*) SO=.${SOABI}.so;; > + Linux*|GNU*) > + SO=.${SOABI}.so;; > *) SO=.so;; > esac > else > _______________________________________________ > Python-checkins mailing list > python-check...@python.org > http://mail.python.org/mailman/listinfo/python-checkins > _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com