diff options
author | Tim Potter <tpot@samba.org> | 2002-12-04 23:31:47 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-12-04 23:31:47 +0000 |
commit | 8623ca6f82df2738f043bb4f344b050cd10281ed (patch) | |
tree | ceec9ced34384fb8f50b9e2e0d005e06f8e1db6f /source3/python/setup.py | |
parent | 39734e2be8c9d2b87be2872b3bcb7bc2762fc8bc (diff) | |
download | samba-8623ca6f82df2738f043bb4f344b050cd10281ed.tar.gz samba-8623ca6f82df2738f043bb4f344b050cd10281ed.tar.bz2 samba-8623ca6f82df2738f043bb4f344b050cd10281ed.zip |
FUNCTION_MACRO change broke the Python modules.
Also fix up string pasting (I thought this should only be a warning?)
(This used to be commit 739285ff694e9ffd317ad47aec373e2007c20f45)
Diffstat (limited to 'source3/python/setup.py')
-rwxr-xr-x | source3/python/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/python/setup.py b/source3/python/setup.py index bf62f3b877..09a81fd914 100755 --- a/source3/python/setup.py +++ b/source3/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"]) ], ) |