diff options
author | Martin Pool <mbp@samba.org> | 2002-09-09 08:06:17 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-09-09 08:06:17 +0000 |
commit | fc5e8b8f672d461809f113fe14435841608b046f (patch) | |
tree | 3a140e765cf2f2baf120383d74b74ee260b3ad46 /source/python/setup.py | |
parent | 8bebe9ee2b6bd56c297acc6b01cb0856aad1c4f3 (diff) | |
download | samba-fc5e8b8f672d461809f113fe14435841608b046f.tar.gz samba-fc5e8b8f672d461809f113fe14435841608b046f.tar.xz samba-fc5e8b8f672d461809f113fe14435841608b046f.zip |
Build py_tdbpack as well.
Diffstat (limited to 'source/python/setup.py')
-rwxr-xr-x | source/python/setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/python/setup.py b/source/python/setup.py index b39ef448c1a..38bc841d989 100755 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -164,5 +164,10 @@ setup( libraries = lib_list, library_dirs = ["/usr/kerberos/lib"], extra_objects = obj_list), + + # tdbpack/unpack extensions. Does not actually link to any Samba + # code, although it implements a compatible data format. + Extension(name = "tdbpack", + sources = [os.path.join(samba_srcdir, "python", "py_tdbpack.c")]), ], ) |