[Python-Dev] [Python-checkins] r85481 - in python/branches/py3k: Misc/NEWS configure.in

Brett Cannon brett at python.org
Thu Oct 14 18:44:42 CEST 2010


Doesn't autoconf need to be run to regenerate configure?

On Thu, Oct 14, 2010 at 08:24, matthias.klose
<python-checkins at 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-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-checkins
>


More information about the Python-Dev mailing list