Ported to CodeWarrior 6
diff --git a/Mac/Compat/macstat.h b/Mac/Compat/macstat.h
index 4c24219..64ace4e 100644
--- a/Mac/Compat/macstat.h
+++ b/Mac/Compat/macstat.h
@@ -26,3 +26,8 @@
 #define S_IREAD    0400
 #define S_IWRITE   0200
 #define S_IEXEC    0100
+
+/* To stop inclusion of MWerks header: */
+#ifndef _STAT
+#define _STAT
+#endif
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c
index 9d757bc..239e1a5 100644
--- a/Mac/Modules/macmodule.c
+++ b/Mac/Modules/macmodule.c
@@ -454,6 +454,7 @@
 }
 #endif /* !__MWERKS__ */
 
+#undef MALLOC_DEBUG
 #ifdef MALLOC_DEBUG
 static object *
 mac_mstats(self, args)
diff --git a/Mac/Unsupported/mactcp/macdnrmodule.c b/Mac/Unsupported/mactcp/macdnrmodule.c
index ac42222..fe89e03 100644
--- a/Mac/Unsupported/mactcp/macdnrmodule.c
+++ b/Mac/Unsupported/mactcp/macdnrmodule.c
@@ -32,9 +32,8 @@
 #ifndef HAVE_UNIVERSAL_HEADERS
 #define ResultUPP ResultProcPtr
 #define NewResultProc(x) (x)
-/* The '2' has move in this name... */
-#define Result2UPP ResultProc2Ptr
-#define NewResult2Proc(x) (x)
+#define ResultProc2UPP ResultProc2Ptr
+#define NewResultProc2Proc(x) (x)
 #endif
 
 static object *ErrorObject;
@@ -365,7 +364,7 @@
 	OSErr err;
 	char *hostname;
 	dnrrobject *rv;
-	Result2UPP cb_upp = NewResult2Proc(dnrr_done);
+	ResultProc2UPP cb_upp = NewResultProc2Proc(dnrr_done);
 
 	if (!newgetargs(args, "s", &hostname))
 		return NULL;
@@ -398,7 +397,7 @@
 	OSErr err;
 	char *hostname;
 	dnrrobject *rv;
-	Result2UPP cb_upp = NewResult2Proc(dnrr_done);
+	ResultProc2UPP cb_upp = NewResultProc2Proc(dnrr_done);
 
 	if (!newgetargs(args, "s", &hostname))
 		return NULL;