Initial port to CodeWarrior CFM68K support (mainly by disabling
unsupported features).
diff --git a/Mac/Python/macapplication.c b/Mac/Python/macapplication.c
index bac0620..0028741 100644
--- a/Mac/Python/macapplication.c
+++ b/Mac/Python/macapplication.c
@@ -24,12 +24,15 @@
 
 /* Macintosh Applet Python main program */
 
-#ifdef __CFM68K__
+#ifdef SYMANTEC__CFM68K__
 #pragma lib_export on
 #endif
 
 extern void PyMac_InitApplication();
 
 main() {
+#if defined(__MWERKS__) && defined(__CFM68K__)
+	printf("Hello, world!\n");
+#endif
 	PyMac_InitApplication();
 }
diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c
index 66c6d59..5f2e637 100644
--- a/Mac/Python/macgetargv.c
+++ b/Mac/Python/macgetargv.c
@@ -50,7 +50,7 @@
 #define HAVE_UNIVERSAL_HEADERS
 #endif
 
-#ifdef __CFM68K__
+#ifdef SYMANTEC__CFM68K__
 #pragma lib_export on
 #endif
 
@@ -120,6 +120,9 @@
 	char tmpbuf[256];
 	int plen;
 
+#if defined(__MWERKS__) && defined(__CFM68K__)
+	return -1; /* get_folder_parent doesn't work */
+#endif
 	fss_current = *fss;
 	plen = fss_current.name[0];
 	memcpy(buf, &fss_current.name[1], plen);
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index 38f654f..24667e6 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -223,6 +223,9 @@
 scan_event_queue(flush)
 	int flush;
 {
+#if defined(__MWERKS__) && defined(__CFM68K__)
+	return; /* No GetEvQHdr yet */
+#else
 	register EvQElPtr q;
 	
 	q = (EvQElPtr) GetEvQHdr()->qHead;
@@ -237,6 +240,7 @@
 			break;
 		}
 	}
+#endif
 }
 
 int