diff options
author | Tim Potter <tpot@samba.org> | 2002-07-29 03:50:35 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-07-29 03:50:35 +0000 |
commit | 0872bc448686cad6e9e95d24fbf72fdad48ed5d3 (patch) | |
tree | a8fc2d9ce1529abae83bb0e2392ec28b729dc07a /source3/python/setup.py.in | |
parent | c74a8d72f9875ea34886cca6baa8a1cb3c7ad301 (diff) | |
download | samba-0872bc448686cad6e9e95d24fbf72fdad48ed5d3.tar.gz samba-0872bc448686cad6e9e95d24fbf72fdad48ed5d3.tar.bz2 samba-0872bc448686cad6e9e95d24fbf72fdad48ed5d3.zip |
Skeleton for a libsmb python wrapper.
(This used to be commit 36cc488c4d99198d346103b0e44776a7de145428)
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 0895e25c08..c61ec2c214 100755 --- a/source3/python/setup.py.in +++ b/source3/python/setup.py.in @@ -150,5 +150,14 @@ setup( library_dirs = ["/usr/kerberos/lib"], extra_objects = obj_list), + # libsmb module + + Extension(name = "smb", + sources = [samba_srcdir + "python/py_smb.c", + samba_srcdir + "python/py_common.c"], + libraries = lib_list, + library_dirs = ["/usr/kerberos/lib"], + extra_objects = obj_list), + ], ) |