Added sha module, it's needed by the unicode stuff, it seems.
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c
index 901bdb2..892f930 100644
--- a/Mac/Modules/macconfig.c
+++ b/Mac/Modules/macconfig.c
@@ -167,6 +167,7 @@
 extern void initcPickle();
 extern void initcStringIO();
 extern void init_codecs();
+extern void initsha();
 extern void init_locale();
 #ifdef USE_UCNHASH
 extern void initucnhash();
@@ -206,6 +207,7 @@
 	{"pcre", initpcre},
 	{"unicodedata", initunicodedata},
 	{"_codecs", init_codecs},
+	{"sha", initsha},
 #ifdef USE_MACCTB
 	{"ctb", initctb},
 #endif