diff options
author | Tim Potter <tpot@samba.org> | 2003-03-19 11:20:45 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-03-19 11:20:45 +0000 |
commit | e69c061211e9c64201b54087d1381740d82cbbcd (patch) | |
tree | 002e98f96525cfd601a676e88519a8362a8e6d2c /source/python/setup.py | |
parent | f0f1518fc450834725902e9cdf33fb8d35f99360 (diff) | |
download | samba-e69c061211e9c64201b54087d1381740d82cbbcd.tar.gz samba-e69c061211e9c64201b54087d1381740d82cbbcd.tar.xz samba-e69c061211e9c64201b54087d1381740d82cbbcd.zip |
Remove py_samba.c experiment - it didn't work.
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."]) |