Define PY_SSIZE_T_CLEAN at the top of the dbm module.  This should fix the
segfaults on the PPC64/Debian buildbots.
diff --git a/Modules/_dbmmodule.c b/Modules/_dbmmodule.c
index 5775511..80c73bf 100644
--- a/Modules/_dbmmodule.c
+++ b/Modules/_dbmmodule.c
@@ -2,6 +2,7 @@
 /* DBM module using dictionary interface */
 
 
+#define PY_SSIZE_T_CLEAN
 #include "Python.h"
 
 #include <sys/types.h>