From 62c756e319431ed1f9a3fc2985a08ef92f9ad3ca Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 20 Mar 2003 01:03:11 +0000 Subject: Merge of removal of py_samba.c (This used to be commit 68b4052281d22dace2ae9e48d022fa288c0a6425) --- source3/python/setup.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'source3/python/setup.py') 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."]) -- cgit