117724f21a94ff32f773af4c37be88fe0d2970e3~suv--- Modules/posixmodule.c.orig Sat Dec 11 14:27:52 2004
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+++ Modules/posixmodule.c Sat Dec 11 14:28:17 2004
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -339,7 +339,7 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv /* Return a dictionary corresponding to the POSIX environment table */
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-#ifdef WITH_NEXT_FRAMEWORK
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+#ifdef __APPLE__
117724f21a94ff32f773af4c37be88fe0d2970e3~suv /* On Darwin/MacOSX a shared library or framework has no access to
117724f21a94ff32f773af4c37be88fe0d2970e3~suv ** environ directly, we must obtain it with _NSGetEnviron().
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -357,7 +357,7 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv d = PyDict_New();
117724f21a94ff32f773af4c37be88fe0d2970e3~suv if (d == NULL)
117724f21a94ff32f773af4c37be88fe0d2970e3~suv return NULL;
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-#ifdef WITH_NEXT_FRAMEWORK
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+#ifdef __APPLE__
117724f21a94ff32f773af4c37be88fe0d2970e3~suv if (environ == NULL)
117724f21a94ff32f773af4c37be88fe0d2970e3~suv environ = *_NSGetEnviron();