Bit another bullet: all toolbox modules are now in dynamically loaded modules. Everything still seems to work, but the ConfigurePythonXXX on initial install may still need work.
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c
index 62fa76b..8e577e3 100644
--- a/Mac/Modules/macconfig.c
+++ b/Mac/Modules/macconfig.c
@@ -80,6 +80,7 @@
 extern void initpcre();
 extern void initunicodedata();
 extern void init_codecs();
+extern void initNav();
 #ifdef USE_MACCTB
 extern void initctb();
 #endif
@@ -120,7 +121,6 @@
 extern void initQd();
 extern void initRes();
 extern void initWin();
-extern void initNav();
 #endif
 #ifdef USE_QT
 extern void initCm();
@@ -207,6 +207,7 @@
 	{"unicodedata", initunicodedata},
 	{"_codecs", init_codecs},
 	{"sha", initsha},
+	{"Nav", initNav},
 #ifdef USE_MACCTB
 	{"ctb", initctb},
 #endif
@@ -228,7 +229,6 @@
 	{"Drag", initDrag},
 	{"Evt", initEvt},
 	{"Menu", initMenu},
-	{"Nav", initNav},
 	{"Qd", initQd},
 	{"Win", initWin},
 	{"Res", initRes},