diff -ur MySQL-python-1.2.5.orig/_mysql.c MySQL-python-1.2.5.new/_mysql.c --- MySQL-python-1.2.5.orig/_mysql.c 2014-01-02 13:52:50.000000000 -0500 +++ MySQL-python-1.2.5.new/_mysql.c 2014-10-24 15:04:34.938755323 -0400 @@ -26,6 +26,14 @@ PERFORMANCE OF THIS SOFTWARE. */ +#if defined(MS_WINDOWS) +#include +#else +#include "my_config.h" +#endif +#include "mysql.h" +#include "mysqld_error.h" + #include "Python.h" #if PY_MAJOR_VERSION >= 3 #define IS_PY3K @@ -38,13 +46,6 @@ #endif #include "pymemcompat.h" #include "structmember.h" -#if defined(MS_WINDOWS) -#include -#else -#include "my_config.h" -#endif -#include "mysql.h" -#include "mysqld_error.h" #include "errmsg.h" #if PY_VERSION_HEX < 0x02020000