Added missing include for <Aliases.h>
diff --git a/Python/importdl.c b/Python/importdl.c
index 65f2f72..01d9c16 100644
--- a/Python/importdl.c
+++ b/Python/importdl.c
@@ -150,6 +150,7 @@
 #endif
 
 #ifdef USE_MAC_DYNAMIC_LOADING
+#include <Aliases.h>
 #include <CodeFragments.h>
 #ifdef SYMANTEC__CFM68K__ /* Really just an older version of Universal Headers */
 #define CFragConnectionID ConnectionID
@@ -268,10 +269,7 @@
 		
 		/* 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);