10139N/A--- Python-2.4.4/setup.py.expat 2007-08-08 10:48:40.489500000 -0400
10139N/A+++ Python-2.4.4/setup.py 2007-08-08 10:53:36.397669000 -0400
10139N/A@@ -823,6 +823,10 @@
10139N/A # is included in Modules/expat/. Usage of a system
10139N/A # shared libexpat.so/expat.dll is not advised.
10139N/A #
10139N/A+ # On Solaris, we use libexpat.so instead of statically linking it,
10139N/A+ # otherwise it causes various crashes in apps that use both
10139N/A+ # Python and libexpat. See 6544688 for details.
10139N/A+ #
10139N/A # More information on Expat can be found at www.libexpat.org.
10139N/A #
10139N/A expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
10139N/A@@ -833,10 +837,8 @@
10139N/A define_macros = define_macros,
10139N/A include_dirs = [expatinc],
10139N/A sources = ['pyexpat.c',
10139N/A- 'expat/xmlparse.c',
10139N/A- 'expat/xmlrole.c',
10139N/A- 'expat/xmltok.c',
10139N/A- ],
10139N/A+ 'expat/xmlparse.c'],
10139N/A+ libraries = ['expat']
10139N/A ))
10139N/A
10139N/A # Hye-Shik Chang's CJKCodecs modules.
10139N/A