This patch turns the Python API mismatch notice into a standard
Python warning which can be catched by means of the Python warning
framework.

It also adds two new APIs which hopefully make it easier for Python
to switch to buffer overflow safe [v]snprintf() APIs for error
reporting et al. The two new APIs are PyOS_snprintf() and
PyOS_vsnprintf() and work just like the standard ones in many
C libs. On platforms which have snprintf(), the native APIs are used,
on all other an emulation with snprintf() tries to do its best.
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 3ca3397..9fbf29d 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -214,6 +214,7 @@
 		Python/marshal.o \
 		Python/modsupport.o \
 		Python/mystrtoul.o \
+		Python/mysnprintf.o \
 		Python/pyfpe.o \
 		Python/pystate.o \
 		Python/pythonrun.o \