summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-11-27 08:02:06 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-11-27 08:02:06 +0000
commit9d5ea17eb7baaecba6c7697282435e4884a82d92 (patch)
treef4375babd50ef386a5b54129f507cbef75157549
parent9715c17b84b449d5134e0a671c7abe573166779b (diff)
downloadlibxml2-9d5ea17eb7baaecba6c7697282435e4884a82d92.tar.gz
another patch from Stéphane Bidoul for Python bindings on Windows small
* python/setup.py.in: another patch from Stéphane Bidoul for Python bindings on Windows * doc/parsedecl.py: small cleanup Daniel
-rw-r--r--ChangeLog6
-rwxr-xr-xdoc/parsedecl.py4
-rwxr-xr-xpython/setup.py.in36
3 files changed, 28 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index 63a571b5..cab22907 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Nov 27 09:00:00 CET 2002 Daniel Veillard <daniel@veillard.com>
+
+ * python/setup.py.in: another patch from Stéphane Bidoul for
+ Python bindings on Windows
+ * doc/parsedecl.py: small cleanup
+
Mon Nov 25 17:28:53 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxml.spec.in configure.in: add a line in %changelog for releases
diff --git a/doc/parsedecl.py b/doc/parsedecl.py
index 56305c8d..d29d5f2b 100755
--- a/doc/parsedecl.py
+++ b/doc/parsedecl.py
@@ -530,10 +530,6 @@ def analyzeXMLDoc(doc):
for description in descriptions:
analyzeXMLDescription(doc, description)
-doc = libxml2.parseFile("xml/c14n.xml");
-analyzeXMLDoc(doc)
-doc.freeDoc()
-
xmlfiles = 0
filenames = os.listdir("xml")
for filename in filenames:
diff --git a/python/setup.py.in b/python/setup.py.in
index 5d24dfd4..cca1f040 100755
--- a/python/setup.py.in
+++ b/python/setup.py.in
@@ -5,10 +5,10 @@
import sys, os
from distutils.core import setup, Extension
-# Below ROOT, we expect to find include, include/libxml2, lib and bin
-# TBC: on unix, it is not needed (but should not harm),
-# on Windows, it can be set by configure.js
-ROOT = r'../../_bin'
+# Below ROOT, we expect to find include, include/libxml2, lib and bin.
+# On *nix, it is not needed (but should not harm),
+# on Windows, it is set by configure.js.
+ROOT = r'@prefix@'
# If this flag is set (windows only),
# a private copy of the dlls are included in the package.
@@ -168,22 +168,31 @@ libs = [libraryPrefix + "xml2"] + platformLibs
macros = []
if with_xslt == 1:
descr = "libxml2 and libxslt package"
- #
- # We are gonna build 2 identical shared libs with merge initializing
- # both libxml2mod and libxsltmod
- #
- c_files = c_files + ['libxslt-py.c', 'libxslt.c']
+ if not sys.platform.startswith('win'):
+ #
+ # We are gonna build 2 identical shared libs with merge initializing
+ # both libxml2mod and libxsltmod
+ #
+ c_files = c_files + ['libxslt-py.c', 'libxslt.c']
+ xslt_c_files = c_files
+ macros.append(('MERGED_MODULES', '1'))
+ else:
+ #
+ # On windows the MERGED_MODULE option is not needed
+ # (and does not work)
+ #
+ xslt_c_files = ['libxslt-py.c', 'libxslt.c', 'types.c']
+ libs.insert(0, libraryPrefix + 'exslt')
libs.insert(0, libraryPrefix + 'xslt')
includes.append(xslt_includes)
modules.append('libxslt')
- macros.append(('MERGED_MODULES', '1'))
extens=[Extension('libxml2mod', c_files, include_dirs=includes,
library_dirs=libdirs,
libraries=libs, define_macros=macros)]
if with_xslt == 1:
- extens.append(Extension('libxsltmod', c_files, include_dirs=includes,
+ extens.append(Extension('libxsltmod', xslt_c_files, include_dirs=includes,
library_dirs=libdirs,
libraries=libs))
@@ -206,9 +215,8 @@ else:
data_files = []
setup (name = "libxml2-python",
- # TBC: extract the version number from somewhere
- # On *nix, this is created from setup.py.in
- # On windows, this could be set by configure.js
+ # On *nix, the version number is created from setup.py.in
+ # On windows, it is set by configure.js
version = "@LIBXML_VERSION@",
description = descr,
author = "Daniel Veillard",