Added a MS VC 6.0 compatibility hack against Cython-generated C sources.
diff --git a/ext/_yaml.h b/ext/_yaml.h
index 3e664f0..21fd6a9 100644
--- a/ext/_yaml.h
+++ b/ext/_yaml.h
@@ -13,3 +13,11 @@
 #define PyString_FromStringAndSize  PyBytes_FromStringAndSize
 
 #endif
+
+#ifdef _MSC_VER	/* MS Visual C++ 6.0 */
+#if _MSC_VER == 1200
+
+#define PyLong_FromUnsignedLongLong(z)	PyInt_FromLong(i)
+
+#endif
+#endif
diff --git a/setup.cfg b/setup.cfg
index 737dc9e..4ffc92c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -28,13 +28,7 @@
 #define=YAML_DECLARE_STATIC
 
 # The following options are used to build PyYAML Windows installer
-# for Python 2.6 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.2/include
-#library_dirs=../../../libyaml/tags/0.1.2/win32/vs2008/output/release/lib
-#define=YAML_DECLARE_STATIC
-
-# The following options are used to build PyYAML Windows installer
-# for Python 3.0 on my PC:
+# for Python 2.6 and Python 3.0 on my PC:
 #include_dirs=../../../libyaml/tags/0.1.2/include
 #library_dirs=../../../libyaml/tags/0.1.2/win32/vs2008/output/release/lib
 #define=YAML_DECLARE_STATIC