diff options
author | Tim Potter <tpot@samba.org> | 2002-04-15 07:29:47 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-04-15 07:29:47 +0000 |
commit | b84cce809baceeb7a24b3a98e9bef47279aad3ca (patch) | |
tree | d69e9e52ecfaeeb0c08b29857411b4cb213e0b94 /source3/python/setup.py.in | |
parent | 3fca495f8c7a1579beda3305b207af6a988bac4c (diff) | |
download | samba-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-x | source3/python/setup.py.in | 9 |
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", |