diff options
author | Justus Winter <[email protected]> | 2016-09-26 09:35:40 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-09-26 14:54:57 +0000 |
commit | 3703a4723899d7563937b4b99f5bbe4dd8d3dfed (patch) | |
tree | 247cea864252c3774c56df74cd1ee9dfc1881d22 /lang/python/Makefile.am | |
parent | Fix spelling (diff) | |
download | gpgme-3703a4723899d7563937b4b99f5bbe4dd8d3dfed.tar.gz gpgme-3703a4723899d7563937b4b99f5bbe4dd8d3dfed.zip |
python: Include 'config.h'.
* lang/python/Makefile.am: Pass 'top_builddir' to 'setup.py'.
* lang/python/gpgme.i: Include 'config.h'.
* lang/python/helpers.c: Likewise.
* lang/python/helpers.h: Likewise.
* lang/python/setup.py.in: Make sure that 'config.h' can be found.
--
Fixes build on 32 bit platforms with large file support.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/Makefile.am')
-rw-r--r-- | lang/python/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 2271ce0b..1d7aee8b 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -56,6 +56,7 @@ copystamp: $(COPY_FILES) $(COPY_FILES_PYME) all-local: copystamp for PYTHON in $(PYTHONS); do \ CFLAGS="$(CFLAGS) -I$(top_srcdir)" \ + top_builddir="$(top_builddir)" \ $$PYTHON setup.py build --verbose ; \ done |