Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2003-06-06 12:40:52 +0400
committerJacek Konieczny <jajcus@jajcus.net>2003-06-06 12:40:52 +0400
commit91bb36727648e0da04c7052fee4eacae9ab6ca49 (patch)
treece1c2a5a82a970645a45f6c794561f105c1f7413 /setup.py
parent94d924aed12c054f5f48edecec2285e46051642e (diff)
- no more ugly libxml2 hacks
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index bbf32e2..62d9ca8 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#! /usr/bin/env python
-# $Id: setup.py,v 1.2 2003/06/04 12:08:35 jajcus Exp $
+# $Id: setup.py,v 1.3 2003/06/06 08:40:44 jajcus Exp $
from distutils.core import setup, Extension
@@ -15,17 +15,14 @@ setup(
license = 'LGPL',
ext_modules = [
Extension(
- 'pyxmpp.libxml2addon._libxml2addon',
+ 'pyxmpp._xmlextra',
[
- 'libxml2addon/xmlreader.c',
- 'libxml2addon/tree.c',
- 'libxml2addon/libxml.c',
- 'libxml2addon/types.c',
- 'libxml2addon/libxml2-py.c',
+ 'ext/xmlextra.c',
],
libraries = ['xml2'],
include_dirs = ['libxml2addon','/usr/include/libxml2'],
),
+
],
#-- Python modules
packages = [