From: Jack Jansen Date: Mon, 23 Oct 1995 13:54:01 +0000 (+0000) Subject: Added missing include for X-Git-Tag: v1.4b1~518 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a72e8d4d2a3dd1abd2d8cdac4cf1a10fd72f95e;p=thirdparty%2FPython%2Fcpython.git Added missing include for --- diff --git a/Python/importdl.c b/Python/importdl.c index 65f2f72ff6be..01d9c1698661 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -150,6 +150,7 @@ typedef void (*dl_funcptr)(); #endif #ifdef USE_MAC_DYNAMIC_LOADING +#include #include #ifdef SYMANTEC__CFM68K__ /* Really just an older version of Universal Headers */ #define CFragConnectionID ConnectionID @@ -268,10 +269,7 @@ load_dynamic_module(name, pathname, fp) /* First resolve any aliases to find the real file */ (void)FSMakeFSSpec(0, 0, Pstring(pathname), &libspec); -#if !(defined(__MWERKS__) && defined(__CFM68K__)) - /* Bug: not in library */ err = ResolveAliasFile(&libspec, 1, &isfolder, &didsomething); -#endif if ( err ) { sprintf(buf, "%s: %s", pathname, PyMac_StrError(err)); err_setstr(ImportError, buf);