diff options
author | Tim Potter <tpot@samba.org> | 2002-12-05 23:05:28 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-12-05 23:05:28 +0000 |
commit | 5bd90f310aa6303a5c949b46591f9fcf82a175b8 (patch) | |
tree | c12d3901d7d6609a0b79ec56a2eeb421a3d7f810 /source/python/setup.py | |
parent | 008c572ab7c77248823287133dbafa8b825e17af (diff) | |
download | samba-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-x | source/python/setup.py | 3 |
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"]) ], ) |