[git] GPGME - branch, master, updated. gpgme-1.7.0-53-g05e8e12

by Werner Koch cvs at cvs.gnupg.org
Tue Oct 18 19:24:29 CEST 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG Made Easy".

The branch, master has been updated
       via  05e8e1260baa5cbc6f1d6e387e642c1f6c188d44 (commit)
       via  c6cab5a2bd6e7ed226c6c3f0b78b3f48b47db74c (commit)
      from  1e8c34a9192956bb2fe96a7a6a76ff59de8d1c0c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 05e8e1260baa5cbc6f1d6e387e642c1f6c188d44
Author: Werner Koch <wk at gnupg.org>
Date:   Fri Oct 14 16:29:06 2016 +0200

    tests: Make t-cancel more portable.
    
    * tests/gpg/t-cancel.c: Include sys/time.h and protect sys/select.h.
    
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/tests/gpg/t-cancel.c b/tests/gpg/t-cancel.c
index 16a062a..b5550d8 100644
--- a/tests/gpg/t-cancel.c
+++ b/tests/gpg/t-cancel.c
@@ -32,9 +32,15 @@
 #include <limits.h>
 #include <ctype.h>
 #include <errno.h>
+#ifdef HAVE_SYS_TIME_H
+# include <sys/time.h>
+#endif
+#include <sys/types.h>
 #include <unistd.h>
 #include <pthread.h>
-#include <sys/select.h>
+#ifdef HAVE_SYS_SELECT_H
+# include <sys/select.h>
+#endif
 
 #include <gpgme.h>
 

commit c6cab5a2bd6e7ed226c6c3f0b78b3f48b47db74c
Author: Werner Koch <wk at gnupg.org>
Date:   Fri Oct 14 16:20:15 2016 +0200

    python: Call ln(1) in a portable way.
    
    * lang/python/Makefile.am: Specify target dir for ln.
    
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am
index 9cb99c4..224a91a 100644
--- a/lang/python/Makefile.am
+++ b/lang/python/Makefile.am
@@ -54,10 +54,10 @@ copystamp: $(COPY_FILES) $(COPY_FILES_PYME) data.h config.h
 	touch $@
 
 data.h:
-	ln -s "$(top_srcdir)/src/data.h"
+	ln -s "$(top_srcdir)/src/data.h" .
 
 config.h:
-	ln -s "$(top_builddir)/config.h"
+	ln -s "$(top_builddir)/config.h" .
 
 all-local: copystamp
 	for PYTHON in $(PYTHONS); do \

-----------------------------------------------------------------------

Summary of changes:
 lang/python/Makefile.am | 4 ++--
 tests/gpg/t-cancel.c    | 8 +++++++-
 2 files changed, 9 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GnuPG Made Easy
http://git.gnupg.org




More information about the Gnupg-commits mailing list