diff options
author | Justus Winter <[email protected]> | 2016-07-28 08:20:20 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-07-28 08:23:32 +0000 |
commit | 3d4dc3f0218234a27103bdb6f93b17c0703b71a2 (patch) | |
tree | 78fe738389557a8e388cc660c6373877662f08f0 /lang/python/Makefile.am | |
parent | Fix including nil bytes in keylist output. (diff) | |
download | gpgme-3d4dc3f0218234a27103bdb6f93b17c0703b71a2.tar.gz gpgme-3d4dc3f0218234a27103bdb6f93b17c0703b71a2.zip |
python: Expose less functions to the Python world.
* lang/python/Makefile.am (EXTRA_DIST, COPY_FILES): Add new file.
* lang/python/gpgme.i: Include new file and add comments.
* lang/python/helpers.c: Include new file.
* lang/python/helpers.h: Move functions we do not need to expose...
* lang/python/private.h: ... here.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/Makefile.am')
-rw-r--r-- | lang/python/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 0ac1dd01..3651db98 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -20,7 +20,7 @@ EXTRA_DIST = \ README \ MANIFEST.in \ gpgme.i \ - helpers.c helpers.h \ + helpers.c helpers.h private.h \ gpgme-h-clean.py \ examples \ pyme @@ -34,7 +34,7 @@ COPY_FILES = \ $(srcdir)/gpgme-h-clean.py \ $(srcdir)/pyme \ $(srcdir)/examples \ - $(srcdir)/helpers.c $(srcdir)/helpers.h + $(srcdir)/helpers.c $(srcdir)/helpers.h $(srcdir)/private.h # For VPATH builds we need to copy some files because Python's # distutils are not VPATH-aware. |