[Gpg4win-commits] [git] Gpg4win - branch, master, updated. gpg4win-2.1.0-197-ge0d1035
by Andre Heinecke
cvs at cvs.gnupg.org
Thu May 16 10:34:30 CEST 2013
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 for Windows".
The branch, master has been updated
via e0d10355dea3f9ca6d59b6b5a7459e650ef84306 (commit)
via aecd04a983c515437c5dd07e478b7d16d290ecdb (commit)
from 4f2841e09b306aaacdce06e611c639e419a671ed (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 e0d10355dea3f9ca6d59b6b5a7459e650ef84306
Author: Andre Heinecke <aheinecke at intevation.de>
Date: Thu May 16 08:15:12 2013 +0000
Update Kleopatra binary package
This build contains an additional patch to fix kuinqueapplication
on Windows so that it calls newInstance on the already running
instance.
* packages/packages.current: Update kleopatra packages
diff --git a/packages/packages.current b/packages/packages.current
index 85ec2c0..efb5311 100644
--- a/packages/packages.current
+++ b/packages/packages.current
@@ -503,8 +503,8 @@ chk c48227c5f3b475c7792abc36c415479d3233468c
#
server http://files.kolab.org/local/gpg4win
-file kleopatra-20130515-bin.tar.bz2
-chk 655cb63543ce51fd84be948928e3414bc0719b26
+file kleopatra-20130516-bin.tar.bz2
+chk ed7c75bb0cb23801f0bf6f18a5f6b56f97821262
-file kleopatra-20130515-src.tar.bz2
-chk 44547d00ca0d98e5100a7a34796d15ea2eb6ab6b
+file kleopatra-20130516-src.tar.bz2
+chk 5c08d531c9a0810fdb3881909ba3f9d498aaabf0
commit aecd04a983c515437c5dd07e478b7d16d290ecdb
Author: Andre Heinecke <aheinecke at intevation.de>
Date: Thu May 16 07:58:00 2013 +0000
Call _spawnv with NOWAIT parameter for Kleopatra
As kbuildsycoca is executed by CreateProcess and not by
_spawnv there is no reason to wait for Kleopatra to finish
and leave the additional kleowrap process hanging around.
* src/kleowrap.c (main): Call _spwanv with NOWAIT instead of
WAIT
diff --git a/src/kleowrap.c b/src/kleowrap.c
index 78289e6..e2f15c1 100644
--- a/src/kleowrap.c
+++ b/src/kleowrap.c
@@ -366,7 +366,7 @@ main (int argc, const char * const *argv)
/* Using execv does not replace the existing program image, but
spawns a new one and daemonizes it, confusing the command line
interpreter. So we have to use spawnv. */
- rc = _spawnv (_P_WAIT, pgm, (const char **) argv_quoted);
+ rc = _spawnv (_P_NOWAIT, pgm, (const char **) argv_quoted);
if (rc < 0)
{
fprintf (stderr, "kleowrap: executing `%s' failed: %s\n",
-----------------------------------------------------------------------
Summary of changes:
packages/packages.current | 8 ++++----
src/kleowrap.c | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
hooks/post-receive
--
GnuPG for Windows
http://git.gnupg.org
More information about the Gpg4win-commits
mailing list