summaryrefslogtreecommitdiff
path: root/source3/python/setup.py.in
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-04-15 07:29:47 +0000
committerTim Potter <tpot@samba.org>2002-04-15 07:29:47 +0000
commitb84cce809baceeb7a24b3a98e9bef47279aad3ca (patch)
treed69e9e52ecfaeeb0c08b29857411b4cb213e0b94 /source3/python/setup.py.in
parent3fca495f8c7a1579beda3305b207af6a988bac4c (diff)
downloadsamba-b84cce809baceeb7a24b3a98e9bef47279aad3ca.tar.gz
samba-b84cce809baceeb7a24b3a98e9bef47279aad3ca.tar.bz2
samba-b84cce809baceeb7a24b3a98e9bef47279aad3ca.zip
Skeleton for SAMR module.
(This used to be commit 70bd1a0f94412236bf6603f16947336cb75c6415)
Diffstat (limited to 'source3/python/setup.py.in')
-rwxr-xr-xsource3/python/setup.py.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/python/setup.py.in b/source3/python/setup.py.in
index 59182f5def..6bc568fa1d 100755
--- a/source3/python/setup.py.in
+++ b/source3/python/setup.py.in
@@ -111,6 +111,15 @@ setup(
library_dirs = ["/usr/kerberos/lib"],
extra_objects = obj_list),
+ # SAMR pipe module
+
+ Extension(name = "samr",
+ sources = [samba_srcdir + "python/py_samr.c",
+ samba_srcdir + "python/py_common.c"],
+ libraries = lib_list,
+ library_dirs = ["/usr/kerberos/lib"],
+ extra_objects = obj_list),
+
# winbind client module
Extension(name = "winbind",