summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-06-29 02:51:30 (GMT)
committerNed Deily <nad@acm.org>2011-06-29 02:51:30 (GMT)
commit657b2de893a206dbcc3d34baa65f6cfda11726e5 (patch)
tree940a2c6537fdb65b34112fc091161e2f4e260be3
parenta8f8b50bd7c8d36935178a2f9f386d6b250d1eed (diff)
downloadcpython-657b2de893a206dbcc3d34baa65f6cfda11726e5.zip
cpython-657b2de893a206dbcc3d34baa65f6cfda11726e5.tar.gz
cpython-657b2de893a206dbcc3d34baa65f6cfda11726e5.tar.bz2
Issue #9516: Update Misc/NEWS.
-rw-r--r--Misc/NEWS11
1 files changed, 11 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a8c6079..834dea6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,17 @@ Core and Builtins
Library
-------
+- Issue #9516: On Mac OS X, change Distutils to no longer globally attempt to
+ check or set the MACOSX_DEPLOYMENT_TARGET environment variable for the
+ interpreter process. This could cause failures in non-Distutils subprocesses
+ and was unreliable since tests or user programs could modify the interpreter
+ environment after Distutils set it. Instead, have Distutils set the the
+ deployment target only in the environment of each build subprocess. It is
+ still possible to globally override the default by setting
+ MACOSX_DEPLOYMENT_TARGET before launching the interpreter; its value must be
+ greater or equal to the default value, the value with which the interpreter
+ was built.
+
- Issue #12404: Remove C89 incompatible code from mmap module. Patch by Akira
Kitada.