(original) (raw)

changeset: 81732:b41e3e2bd4cc parent: 81728:ee48728e3695 parent: 81731:106d1d79c853 user: Ronald Oussoren ronaldoussoren@mac.com date: Fri Jan 25 18:02:35 2013 +0100 files: Misc/NEWS Modules/posixmodule.c description: Issue #1602133: 'environ' is not really available with shared libraries on OSX (merge from 3.3) There already was a workaround for this for framework builds on OSX, this changeset enables the same workaround for shared libraries. Closes #1602133 diff -r ee48728e3695 -r b41e3e2bd4cc Misc/NEWS --- a/Misc/NEWS Fri Jan 25 15:35:12 2013 +0100 +++ b/Misc/NEWS Fri Jan 25 18:02:35 2013 +0100 @@ -218,6 +218,9 @@ Library ------- +- Issue #1602133: on Mac OS X a shared library build (``--enable-shared``) + now fills the ``os.environ`` variable correctly. + - Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase interface and support all mandatory methods and properties. diff -r ee48728e3695 -r b41e3e2bd4cc Modules/posixmodule.c --- a/Modules/posixmodule.c Fri Jan 25 15:35:12 2013 +0100 +++ b/Modules/posixmodule.c Fri Jan 25 18:02:35 2013 +0100 @@ -924,9 +924,10 @@ #endif /* MS_WINDOWS */ /* Return a dictionary corresponding to the POSIX environment table */ -#ifdef WITH_NEXT_FRAMEWORK +#if defined(WITH_NEXT_FRAMEWORK) || (defined(__APPLE__) && defined(Py_ENABLE_SHARED)) /* On Darwin/MacOSX a shared library or framework has no access to -** environ directly, we must obtain it with _NSGetEnviron(). +** environ directly, we must obtain it with _NSGetEnviron(). See also +** man environ(7). */ #include static char **environ; @@ -947,7 +948,7 @@ d = PyDict_New(); if (d == NULL) return NULL; -#ifdef WITH_NEXT_FRAMEWORK +#if defined(WITH_NEXT_FRAMEWORK) || (defined(__APPLE__) && defined(Py_ENABLE_SHARED)) if (environ == NULL) environ = *_NSGetEnviron(); #endif/ronaldoussoren@mac.com