blob: 3686458701a715310909fe8e00c81bd4d273083f [file] [log] [blame]
Guido van Rossum23105d52002-01-06 03:29:16 +00001--- Modules/pyexpat.c.old Tue Mar 6 02:30:48 2001
2+++ Modules/pyexpat.c Tue Mar 6 02:31:15 2001
3@@ -12,7 +12,7 @@
4 #define EXPAT_VERSION 0x015f00
5 #endif
6 #else /* !defined(HAVE_EXPAT_H) */
7-#include "xmlparse.h"
8+#include "expat/xmlparse.h"
9 /* Assume Expat 1.1 unless told otherwise */
10 #ifndef EXPAT_VERSION
11 #define EXPAT_VERSION 0x010100
12--- setup.py-orig Fri Feb 2 11:24:25 2001
13+++ setup.py Wed Feb 14 18:13:15 2001
14@@ -445,7 +445,7 @@
15 # expat.h was found
16 expat_defs = [('HAVE_EXPAT_H', 1)]
17 else:
18- expat_incs = find_file('xmlparse.h', inc_dirs, [])
19+ expat_incs = find_file('expat/xmlparse.h', inc_dirs, [])
20
21 if (expat_incs is not None and
22 self.compiler.find_library_file(lib_dirs, 'expat')):