diff options
author | Tim Potter <tpot@samba.org> | 2003-03-20 01:03:11 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-03-20 01:03:11 +0000 |
commit | 68b4052281d22dace2ae9e48d022fa288c0a6425 (patch) | |
tree | 26f85e151ded2eac0fc4a0adb884924b616ef155 /source/python/setup.py | |
parent | f0ab1b6147bc0a0e028e67b598bfc0cb9944c8cc (diff) | |
download | samba-68b4052281d22dace2ae9e48d022fa288c0a6425.tar.gz samba-68b4052281d22dace2ae9e48d022fa288c0a6425.tar.xz samba-68b4052281d22dace2ae9e48d022fa288c0a6425.zip |
Merge of removal of py_samba.c
Diffstat (limited to 'source/python/setup.py')
-rwxr-xr-x | source/python/setup.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/source/python/setup.py b/source/python/setup.py index 48487fee4d0..8bc8868a70c 100755 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -177,20 +177,9 @@ setup( extra_compile_args = flags_list, extra_objects = obj_list), - # Moving to merge all individual extensions in to one big - # extension. This is to avoid the fact that each extension is 3MB - # in size due to the lack of proper depedency management in Samba. - - Extension(name = "samba", - sources = [samba_srcdir + "python/py_samba.c", - samba_srcdir + "python/py_common.c"], - libraries = lib_list, - library_dirs = ["/usr/kerberos/lib"], - extra_compile_args = flags_list, - 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")], extra_compile_args = ["-I."]) |