1 --- setup.py 2008-04-22 12:12:24.613554757 +0300
2 +++ setup.py 2008-04-22 12:13:09.276544063 +0300
3 @@ -1035,18 +1035,15 @@
5 # More information on Expat can be found at www.libexpat.org.
7 - expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
9 - ('HAVE_EXPAT_CONFIG_H', '1'),
12 + expatinc = '/usr/include'
15 exts.append(Extension('pyexpat',
16 define_macros = define_macros,
17 include_dirs = [expatinc],
18 + libraries = ['expat'],
19 sources = ['pyexpat.c',
27 exts.append(Extension('_elementtree',
28 define_macros = define_macros,
29 include_dirs = [expatinc],
30 + libraries = ['expat'],
31 sources = ['_elementtree.c'],