summaryrefslogtreecommitdiff
path: root/source3/python/setup.py.in
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-08-30 02:43:51 +0000
committerTim Potter <tpot@samba.org>2002-08-30 02:43:51 +0000
commitd63a6aba6c4ed198eaafb5c22568565ead007f32 (patch)
tree1fb3b7a28cb535b7b1abc89e287bbef1168438ff /source3/python/setup.py.in
parent677bae21d1b46a85b5657a514dc938b3590bd2f5 (diff)
downloadsamba-d63a6aba6c4ed198eaafb5c22568565ead007f32.tar.gz
samba-d63a6aba6c4ed198eaafb5c22568565ead007f32.tar.bz2
samba-d63a6aba6c4ed198eaafb5c22568565ead007f32.zip
Forgot to check in some of the libsmb stuff.
(This used to be commit 0a2f6049c0b49810abf1c3e909d712f53c7fc8c1)
Diffstat (limited to 'source3/python/setup.py.in')
-rwxr-xr-xsource3/python/setup.py.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/python/setup.py.in b/source3/python/setup.py.in
index 9b6dc1a650..5896301245 100755
--- a/source3/python/setup.py.in
+++ b/source3/python/setup.py.in
@@ -160,5 +160,15 @@ setup(
library_dirs = ["/usr/kerberos/lib"],
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_objects = obj_list),
],
)