summaryrefslogtreecommitdiff
path: root/source4/scripting/python/wscript_build
diff options
context:
space:
mode:
authorIvo De Decker <ivo.dedecker@ugent.be>2013-05-10 13:43:38 +0200
committerIvo De Decker <ivo.dedecker@ugent.be>2013-05-10 13:43:38 +0200
commit3dd2f8df067d8810bc207e91f26f0bdd31f71c3f (patch)
tree07b66928d8839f747d788adb5f6362e030213c64 /source4/scripting/python/wscript_build
parent1230d750f743f04cf199ee165072497f3abcd31f (diff)
downloadsamba-3dd2f8df067d8810bc207e91f26f0bdd31f71c3f.tar.gz
Imported Upstream version 4.0.5+dfsg1upstream/4.0.5+dfsg1
Diffstat (limited to 'source4/scripting/python/wscript_build')
-rw-r--r--source4/scripting/python/wscript_build39
1 files changed, 0 insertions, 39 deletions
diff --git a/source4/scripting/python/wscript_build b/source4/scripting/python/wscript_build
deleted file mode 100644
index 9c23a96f8c..0000000000
--- a/source4/scripting/python/wscript_build
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env python
-
-bld.SAMBA_LIBRARY('samba_python',
- source=[],
- deps='LIBPYTHON pytalloc-util pyrpc_util',
- grouping_library=True,
- private_library=True,
- pyembed=True)
-
-bld.SAMBA_SUBSYSTEM('LIBPYTHON',
- source='modules.c',
- public_deps='',
- init_function_sentinel='{NULL,NULL}',
- deps='talloc',
- pyext=True,
- )
-
-
-bld.SAMBA_PYTHON('python_uuid',
- source='uuidmodule.c',
- deps='ndr',
- realname='uuid.so',
- enabled = float(bld.env.PYTHON_VERSION) <= 2.4
- )
-
-
-bld.SAMBA_PYTHON('python_glue',
- source='pyglue.c',
- deps='pyparam_util samba-util netif pytalloc-util',
- realname='samba/_glue.so'
- )
-
-
-# install out various python scripts for use by make test
-bld.SAMBA_SCRIPT('samba_python',
- pattern='samba/**/*.py',
- installdir='python')
-
-bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False)