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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2004-05-28 08:20:30 +0400
committerYann Leboulanger <asterix@lagaule.org>2004-05-28 08:20:30 +0400
commit279a060265d9cac9762a4b2c8cf250822b63f74e (patch)
tree89e00d60b58037df75daf0894c69a8c470b591a8 /setup.py
parent1ae38e75689c91e78fdc7bbff3e9272d4d295dbe (diff)
- idle in a C module, auto away / xa feature is back
- no need to store .mo files : they are now created by make
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 000000000..ecf4c94c0
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,11 @@
+from distutils.core import setup, Extension
+
+module1 = Extension( 'idle',
+ sources = ['common/idle.cpp'],
+# extra_compile_args = ['-W'],
+ libraries = ['gtk-x11-2.0','gdk-x11-2.0','glib-2.0','X11','Xext','Xss','atk-1.0'],
+ library_dirs = ['/usr/X11R6/lib'],
+ include_dirs = ['/usr/include/gtk-2.0', '/usr/include/glib-2.0','/usr/lib/gtk-2.0/include','/usr/lib/glib-2.0/include','/usr/include/pango-1.0','/usr/include/atk-1.0']
+ )
+
+setup (name = 'idle', version = '1.0', description = 'interface to X11/scrnserver.h', ext_modules = [module1])