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 | 462818caba9e68f092fdedb3cbcf7155161dffeb (patch) | |
tree | 8b114ca8eaf4f999ffd316c6824b414dfb81124e /source3 | |
parent | b2536ccfdde333633f1d208a6113182aee260aab (diff) | |
download | samba-462818caba9e68f092fdedb3cbcf7155161dffeb.tar.gz samba-462818caba9e68f092fdedb3cbcf7155161dffeb.tar.bz2 samba-462818caba9e68f092fdedb3cbcf7155161dffeb.zip |
Build py_tdbpack as well.
(This used to be commit fc5e8b8f672d461809f113fe14435841608b046f)
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/python/setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/python/setup.py b/source3/python/setup.py index b39ef448c1..38bc841d98 100755 --- a/source3/python/setup.py +++ b/source3/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")]), ], ) |