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 14:15:28 +0400
committerJacek Konieczny <jajcus@jajcus.net>2003-06-06 14:15:28 +0400
commitcb9a178a7bfcb3f8a2d4738bcb5bb4a43cf5065e (patch)
tree86f45a6534ca45068e4eea93672880552ef1c2e3 /setup.py
parent91bb36727648e0da04c7052fee4eacae9ab6ca49 (diff)
- new stream handling
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 62d9ca8..b60b92c 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#! /usr/bin/env python
-# $Id: setup.py,v 1.3 2003/06/06 08:40:44 jajcus Exp $
+# $Id: setup.py,v 1.4 2003/06/06 10:15:24 jajcus Exp $
from distutils.core import setup, Extension
@@ -21,13 +21,13 @@ setup(
],
libraries = ['xml2'],
include_dirs = ['libxml2addon','/usr/include/libxml2'],
+ extra_compile_args = ['-g2'],
),
],
#-- Python modules
packages = [
'pyxmpp',
- 'pyxmpp.libxml2addon',
'pyxmpp.sasl',
],
)