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 | 739285ff694e9ffd317ad47aec373e2007c20f45 (patch) | |
tree | 55cbce28fcb0bdf7d7e9ed6170b16c7cf84b3f72 /source/python/setup.py | |
parent | 2fe7504a08b692ec791c853e7a260a06142b7595 (diff) | |
download | samba-739285ff694e9ffd317ad47aec373e2007c20f45.tar.gz samba-739285ff694e9ffd317ad47aec373e2007c20f45.tar.xz samba-739285ff694e9ffd317ad47aec373e2007c20f45.zip |
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"]) ], ) |