Jack Jansen: The new version of the GUSI i/o library on the Macintosh
has a few slightly different calls from the old one.
diff --git a/Python/dynload_mac.c b/Python/dynload_mac.c
index 8846803..85ff014 100644
--- a/Python/dynload_mac.c
+++ b/Python/dynload_mac.c
@@ -40,7 +40,7 @@
 #define CFragConnectionID ConnectionID
 #define kLoadCFrag 0x01
 #endif
-#ifdef USE_GUSI
+#ifdef USE_GUSI1
 #include "TFileSpec.h"		/* for Path2FSSpec() */
 #endif
 #include <Files.h>
@@ -78,7 +78,7 @@
 	Ptr mainAddr;
 	Str255 errMessage;
 	OSErr err;
-#ifndef USE_GUSI
+#ifndef USE_GUSI1
 	Boolean isfolder, didsomething;
 #endif
 	char buf[512];
@@ -87,7 +87,7 @@
 	CFragSymbolClass class;
 		
 	/* First resolve any aliases to find the real file */
-#ifdef USE_GUSI
+#ifdef USE_GUSI1
 	err = Path2FSSpec(pathname, &libspec);
 #else
 	(void)FSMakeFSSpec(0, 0, Pstring(pathname), &libspec);