From 623a9eb2df5e62efd2d28765f13a2c314113d679 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Sat, 4 Jan 2003 12:47:20 +0000 Subject: [PATCH] =?UTF-8?q?patch=20from=20St=E9phane=20Bidoul=20to=20inclu?= =?UTF-8?q?de=20drv=5Flibxml2.py=20in=20setup.py=20Daniel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * python/setup.py.in: patch from Stéphane Bidoul to include drv_libxml2.py in setup.py Daniel --- ChangeLog | 5 +++++ python/setup.py.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1e0cb4fa..9b011702 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 4 13:46:14 CET 2003 Daniel Veillard + + * python/setup.py.in: patch from Stéphane Bidoul to include + drv_libxml2.py in setup.py + Sat Jan 4 01:43:06 CET 2003 Daniel Veillard * doc/xmlreader.html: starting documenting the new XmlTextReader diff --git a/python/setup.py.in b/python/setup.py.in index f1c09b00..861d974f 100755 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -159,7 +159,7 @@ if with_xslt == 1: descr = "libxml2 package" -modules = [ 'libxml2' ] +modules = [ 'libxml2', 'drv_libxml2' ] if WITHDLLS: modules.append('libxmlmods.__init__') c_files = ['libxml2-py.c', 'libxml.c', 'types.c' ]