summaryrefslogtreecommitdiffstats
path: root/source/python/setup.py
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-12-05 23:05:28 +0000
committerTim Potter <tpot@samba.org>2002-12-05 23:05:28 +0000
commit5bd90f310aa6303a5c949b46591f9fcf82a175b8 (patch)
treec12d3901d7d6609a0b79ec56a2eeb421a3d7f810 /source/python/setup.py
parent008c572ab7c77248823287133dbafa8b825e17af (diff)
downloadsamba-5bd90f310aa6303a5c949b46591f9fcf82a175b8.tar.gz
samba-5bd90f310aa6303a5c949b46591f9fcf82a175b8.tar.xz
samba-5bd90f310aa6303a5c949b46591f9fcf82a175b8.zip
Merge from HEAD:
>FUNCTION_MACRO change broke the Python modules. > >Also fix up string pasting (I thought this should only be a warning?)
Diffstat (limited to 'source/python/setup.py')
-rwxr-xr-xsource/python/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/python/setup.py b/source/python/setup.py
index bf62f3b8773..09a81fd9141 100755
--- a/source/python/setup.py
+++ b/source/python/setup.py
@@ -179,6 +179,7 @@ setup(
# 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")]),
+ sources = [os.path.join(samba_srcdir, "python", "py_tdbpack.c")],
+ extra_compile_args = ["-I include"])
],
)