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 | 230f9335ec9759e71a38dce9dd120fb2c9b09201 (patch) | |
tree | 604aea3632edf372e8c544b6ca81e1e6638debea /source3/python/setup.py | |
parent | 6fe08f60ca3ee70deb4769025860267cff4f6f4d (diff) | |
download | samba-230f9335ec9759e71a38dce9dd120fb2c9b09201.tar.gz samba-230f9335ec9759e71a38dce9dd120fb2c9b09201.tar.bz2 samba-230f9335ec9759e71a38dce9dd120fb2c9b09201.zip |
Remove py_samba.c experiment - it didn't work.
(This used to be commit e69c061211e9c64201b54087d1381740d82cbbcd)
Diffstat (limited to 'source3/python/setup.py')
-rwxr-xr-x | source3/python/setup.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/source3/python/setup.py b/source3/python/setup.py index 48487fee4d..8bc8868a70 100755 --- a/source3/python/setup.py +++ b/source3/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."]) |