Index: /pyyaml/trunk/Makefile
===================================================================
--- /pyyaml/trunk/Makefile	(revision 195)
+++ /pyyaml/trunk/Makefile	(revision 229)
@@ -10,5 +10,5 @@
 
 buildext:
-	${PYTHON} setup_ext.py build ${PARAMETERS}
+	${PYTHON} setup_with_libyaml.py build ${PARAMETERS}
 
 force:
@@ -16,5 +16,5 @@
 
 forceext:
-	${PYTHON} setup_ext.py build -f ${PARAMETERS}
+	${PYTHON} setup_with_libyaml.py build -f ${PARAMETERS}
 
 install: build
@@ -22,5 +22,5 @@
 
 installext: buildext
-	${PYTHON} setup_ext.py install ${PARAMETERS}
+	${PYTHON} setup_with_libyaml.py install ${PARAMETERS}
 
 test: build
@@ -38,3 +38,2 @@
 clean:
 	${PYTHON} setup.py clean -a
-
Index: /pyyaml/trunk/setup.cfg
===================================================================
--- /pyyaml/trunk/setup.cfg	(revision 229)
+++ /pyyaml/trunk/setup.cfg	(revision 229)
@@ -0,0 +1,17 @@
+
+# The INCLUDE and LIB directories to build the '_yaml' extension.
+# You may also set them using the options '-I' and '-L'.
+[build_ext]
+
+# List of directories to search for 'yaml.h' (separated by ':').
+#include_dirs=/usr/local/include:../../include
+
+# List of directories to search for 'libyaml.a' (separated by ':').
+#library_dirs=/usr/local/lib:../../lib
+
+
+# An alternative compiler to build the extention.
+#compiler=mingw32
+
+# Additional preprocessor definitions might be required.
+#define=YAML_DECLARE_STATIC
