From: Jack Jansen Date: Mon, 13 Feb 1995 11:36:25 +0000 (+0000) Subject: Use PyMac_GetPythonDir() to obtain python homedir X-Git-Tag: v1.2b3~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f6ca80e7111a378d990c86d239423a5383d7178;p=thirdparty%2FPython%2Fcpython.git Use PyMac_GetPythonDir() to obtain python homedir fileargument moved here from macmain.c --- diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index 098ff4f81e8b..5dab182e5678 100644 --- a/Mac/Modules/config.c +++ b/Mac/Modules/config.c @@ -31,6 +31,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef macintosh /* The Macintosh main program is in macmain.c */ #define NO_MAIN +char *fileargument; /* So main() can tell us the program name */ #endif #include @@ -41,6 +42,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "osdefs.h" #include "intrcheck.h" +char *PyMac_GetPythonDir(); #ifndef NO_MAIN @@ -154,15 +156,12 @@ getpythonpath() ** - Chdir to where the source file (if any) lives */ static char *pythonpath; - extern char *fileargument; - char curwd[256]; + char *curwd; char *p, *endp; int newlen; if ( pythonpath ) return pythonpath; - if (getwd(curwd) < 0 ) { - return PYTHONPATH; - } + curwd = PyMac_GetPythonDir(); p = PYTHONPATH; endp = p; pythonpath = malloc(2);