gpgme.git
12 years agoRework status table to be less dynamically generated.
Marcus Brinkmann [Tue, 14 Feb 2012 12:03:46 +0000 (13:03 +0100)]
Rework status table to be less dynamically generated.

* src/Makefile.am (EXTRA_DIST): Remove mkstatus.
(BUILT_SOURCE, MOSTLYCLEANFILES): Remove.
(main_sources): Remove status-table.h, extra-stati.h.
Add status-table.c.
(status-table.h): Remove rules for built source.
* src/decrypt.c: Don't include extra-stati.h.
* src/engine-gpg.c: Don't include status-table.h.
(status_cmp): Remove function.
(read_status): Use _gpgme_parse_status.
* src/engine-gpgsm.c: Don't include status-table.h.
(status_cmp, parse_status): Remove function.
(gpgsm_assuan_simple_command, status_handler): Use _gpgme_parse_status.
* src/engine-uiserver.c: Don't include status-table.h.
(status_cmp, parse_status): Remove function.
(uiserver_assuan_simple_command, status_handler): Use
_gpgme_parse_status.
* src/gpgme.h.in (gpgme_status_code_t): Add
GPGME_STATUS_DECRYPTION_INFO.
* src/util.h (_gpgme_status_init,_gpgme_parse_status): New declaration.
* src/status-table.c: New file.
* src/extra-stati.h, src/mkstatus: Files removed.
* version.c (do_subsystem_inits): Call _gpgme_status_init.

12 years agoUse gpgme interface for error handling to avoid linking with gpg-error.
Marcus Brinkmann [Wed, 8 Feb 2012 14:26:17 +0000 (15:26 +0100)]
Use gpgme interface for error handling to avoid linking with gpg-error.

* tests/t-data.c, tests/run-export.c, tests/run-keylist.c,
tests/run-support.h, tests/run-verify.c, tests/gpg/t-decrypt-verify.c,
tests/gpg/t-edit.c, tests/gpg/t-eventloop.c, tests/gpg/t-keylist-sig.c,
tests/gpg/t-keylist.c, tests/gpg/t-support.h, tests/gpg/t-trustlist.c,
tests/gpg/t-verify.c, tests/gpg/t-wait.c, tests/gpgsm/cms-decrypt.c,
tests/gpgsm/cms-keylist.c, tests/gpgsm/t-keylist.c,
tests/gpgsm/t-support.h, tests/gpgsm/t-verify.c,
tests/opassuan/t-command.c: Use gpgme interface for gpg-error functions.

12 years agoLink the thread test to pthread.
Marcus Brinkmann [Wed, 8 Feb 2012 14:19:33 +0000 (15:19 +0100)]
Link the thread test to pthread.

* tests/gpg/Makefile.am (t_thread1_LDADD): Add -lpthread.

12 years agoLink gpgme-tool directly to libassuan, as it uses its interface.
Marcus Brinkmann [Wed, 8 Feb 2012 14:18:11 +0000 (15:18 +0100)]
Link gpgme-tool directly to libassuan, as it uses its interface.

* src/Makefile.am (gpgme_tool_LDADD): Add @LIBASSUAN_LIBS@.

12 years agoSupport the mingw-w64 toolchain.
Werner Koch [Thu, 19 Jan 2012 17:44:39 +0000 (18:44 +0100)]
Support the mingw-w64 toolchain.

* autogen.sh (build-w32): Add i686-w64-mingw32 to the toolprefix.

12 years agoFix Solaris problems with ttyname_r.
Werner Koch [Thu, 19 Jan 2012 17:43:10 +0000 (18:43 +0100)]
Fix Solaris problems with ttyname_r.

* m4/gnupg-ttyname.m4: New.  Based on ttyname_r from gnulib.
* src/ttyname_r.c (_gpgme_ttyname_r): Rename from ttyname_r.
Implement hacks required for Solaris and possible other non-fully
Posix systems.
* src/util.h: Include unistd.h.  Redefine ttyname_r depending on
REPLACE_TTYNAME_R and put it into the gpgme name space.
--

Unfortunately we cant not use the ttyname_r replacement from gnulib
because we want to keep GPGME LGPLv2+.

12 years agoTry to make configure.ac a bit smaller.
Werner Koch [Thu, 19 Jan 2012 15:05:31 +0000 (16:05 +0100)]
Try to make configure.ac a bit smaller.

* configure.ac: Move header checks.

12 years agoFor W32 use a build number instead of abbreviated commit id.
Werner Koch [Thu, 19 Jan 2012 15:04:19 +0000 (16:04 +0100)]
For W32 use a build number instead of abbreviated commit id.

We would need to use a shortened commit id so that it fits into an 16
bit Windows variable.  Further it is a random number and not something
increasing.  Thus a build number made up from the day of the year and
the hour is much more useful to describe a build number for a specific
revision.
* configure.ac [W32]: Replace BUILD_REVISION by BUILD_NUMBER.
* src/versioninfo.rc.in: Ditto.

12 years agoAdjust configure.ac for modern autoconf.
Werner Koch [Thu, 19 Jan 2012 14:57:09 +0000 (15:57 +0100)]
Adjust configure.ac for modern autoconf.

* configure.ac: Minor cleanups.

12 years agoUpdate to libtool 2.4.2
Werner Koch [Thu, 19 Jan 2012 14:30:52 +0000 (15:30 +0100)]
Update to libtool 2.4.2

* ltmain.sh, m4/libtool.m4, m4/ltoptions.m4, m4/ltversion.m4,
* m4/lt~obsolete.m4: Update.

12 years agoAdd ttyname_r check macro from gnulib.
Werner Koch [Thu, 19 Jan 2012 13:58:22 +0000 (14:58 +0100)]
Add ttyname_r check macro from gnulib.

* m4/gnupg-ttyname.m4: New. Taken from current gnulib.

12 years agoGenerate the ChangeLog from commit logs.
Werner Koch [Fri, 2 Dec 2011 10:32:31 +0000 (11:32 +0100)]
Generate the ChangeLog from commit logs.

* build-aux/gitlog-to-changelog: New script.  Taken from gnulib.
* build-aux/git-log-fix: New file.
* build-aux/git-log-footer: New file.
* build-aux/git-hook/commit-msg: New script.
* doc/HACKING: New file.
* ChangeLog: New file.
* Makefile.am (EXTRA_DIST): Add new files.
(gen-ChangeLog): New.
(dist-hook): Run gen-ChangeLog.
* autogen.sh: Install commit-msg hook for git.

Rename all ChangeLog files to ChangeLog-2011.

12 years agoRemove support for libgpgme-pth.
Marcus Brinkmann [Tue, 25 Oct 2011 16:59:26 +0000 (18:59 +0200)]
Remove support for libgpgme-pth.

12 years agoPost-release.
Marcus Brinkmann [Mon, 4 Jul 2011 18:44:12 +0000 (20:44 +0200)]
Post-release.

12 years agoRelease 1.3.1 gpgme-1.3.1
Marcus Brinkmann [Thu, 16 Jun 2011 12:38:59 +0000 (14:38 +0200)]
Release 1.3.1

12 years agoCheck context pointers for null pointer on entry points.
Marcus Brinkmann [Thu, 26 May 2011 14:01:26 +0000 (16:01 +0200)]
Check context pointers for null pointer on entry points.

12 years agoFix I/O callback example.
Marcus Brinkmann [Thu, 12 May 2011 12:45:46 +0000 (14:45 +0200)]
Fix I/O callback example.

12 years agoCorrect key-gen example.
Marcus Brinkmann [Thu, 12 May 2011 12:42:18 +0000 (14:42 +0200)]
Correct key-gen example.

12 years agoClean up the tests correctly.
Marcus Brinkmann [Wed, 11 May 2011 00:32:20 +0000 (02:32 +0200)]
Clean up the tests correctly.

12 years agoUpdate NEWS file.
Marcus Brinkmann [Fri, 6 May 2011 15:46:03 +0000 (17:46 +0200)]
Update NEWS file.

12 years agoRemove complus support.
Marcus Brinkmann [Fri, 6 May 2011 15:07:35 +0000 (17:07 +0200)]
Remove complus support.

12 years agoRemove complus (10 years unused).
Marcus Brinkmann [Fri, 6 May 2011 11:28:11 +0000 (13:28 +0200)]
Remove complus (10 years unused).

12 years agoRemove unused macro GNUPG_FIX_HDR_VERSION.
Marcus Brinkmann [Fri, 6 May 2011 11:26:58 +0000 (13:26 +0200)]
Remove unused macro GNUPG_FIX_HDR_VERSION.

12 years agoMake sure an existing agent doesn't interfere with test suite generation.
Marcus Brinkmann [Fri, 6 May 2011 00:11:40 +0000 (02:11 +0200)]
Make sure an existing agent doesn't interfere with test suite generation.

12 years agoImprove import tests for GnuPG 2.1.
Marcus Brinkmann [Tue, 3 May 2011 22:52:11 +0000 (00:52 +0200)]
Improve import tests for GnuPG 2.1.

13 years agoUpdate GPGME test suite for use with GnuPG 2.1.
Marcus Brinkmann [Wed, 27 Apr 2011 10:56:19 +0000 (12:56 +0200)]
Update GPGME test suite for use with GnuPG 2.1.

13 years agoRequire autoconf 1.11
Werner Koch [Thu, 14 Apr 2011 17:23:04 +0000 (19:23 +0200)]
Require autoconf 1.11

This is because AM_SUBST_NOTMAKE is only offically supported since
this version of automake.

13 years agoAdd an AC_SUBST_NOTMAKE
Werner Koch [Wed, 6 Apr 2011 18:57:23 +0000 (20:57 +0200)]
Add an AC_SUBST_NOTMAKE

Without that the multiline INSERT__TYPEDEFS_FOR_GPGME_H would be
expanded in the Makefiles and mess them up.

13 years agogpgme-config cleanups and --host option
Werner Koch [Wed, 6 Apr 2011 18:10:45 +0000 (20:10 +0200)]
gpgme-config cleanups and --host option

gpgme-config.in: Add option --host.  Change options --cflags and
--libs to collapse duplicate include and lib dirs.  Try to put extra
libs at the end.

Note that gpgme.m4 has not yet been extended.

13 years agoUpdate gpg-error.m4
Werner Koch [Wed, 6 Apr 2011 12:16:52 +0000 (14:16 +0200)]
Update gpg-error.m4

13 years agoInsert platform dependent typedefs into gpgme.h
Werner Koch [Wed, 6 Apr 2011 11:45:15 +0000 (13:45 +0200)]
Insert platform dependent typedefs into gpgme.h

We already modify gpgme.h per playform and thus we can also get rid of
some #ifdefs.  The change does not change anything for current
platforms but should do the right think for W64.

Note that as per MS specs ssize_t is to be defined as LONG_PTR which
translates to a long on 32 bit platforms and to __int64 on 64 bit
Windows platforms.  We already used long in the past.  There seems to
be a problem with some versions of mingw32 which includes a ssize_t
type typedefed to int.  O(n 32 bit W32 platforms int and long are
identically.

13 years agoMerge branch 'master' of git+ssh://playfair.gnupg.org/git/gpgme
Werner Koch [Thu, 3 Feb 2011 19:51:36 +0000 (20:51 +0100)]
Merge branch 'master' of git+ssh://playfair.gnupg.org/git/gpgme

13 years agoAdd support for non-API GnuPG status codes.
Werner Koch [Thu, 3 Feb 2011 19:49:41 +0000 (20:49 +0100)]
Add support for non-API GnuPG status codes.

As an example stub code for DECRYTPION_INFO has been added.  Note
that the status codes in gpgme.h do only make sense for the edit
interactor interface and thus certain codes don't need to be part of
the public interface.

13 years agoFix socket implementation on Windows.
Marcus Brinkmann [Thu, 3 Feb 2011 11:38:28 +0000 (12:38 +0100)]
Fix socket implementation on Windows.

2011-02-03  Marcus Brinkmann  <marcus@g10code.com>

        * w32-io.c (_gpgme_io_socket): Return fd, not res.

13 years agoFix Windows port (spawn and assuan engine).
Marcus Brinkmann [Wed, 2 Feb 2011 13:07:05 +0000 (14:07 +0100)]
Fix Windows port (spawn and assuan engine).

2011-02-02  Marcus Brinkmann  <mb@g10code.com>

        * configure.ac (NEED_LIBASSUAN_VERSION): Bump to 2.0.2 for system hooks.

src/
2011-02-02  Marcus Brinkmann  <mb@g10code.com>

        * assuan-support.c (my_socket, my_connect): New functions.
        (_gpgme_assuan_system_hooks): Add my_Socket, my_connect.
        * priv-io.h (_gpgme_io_socket): New prototype.
        * w32-io.c (pid_to_handle, handle_to_oid, fd_to_handle): Remove macros.
        (is_socket): Remove function.
        (_gpgme_io_spawn) [HAVE_W32CE_SYSTEM]: Remove some dead code.
        (_gpgme_io_spawn): Translate handles before DuplicateHandle them.

13 years agoMerge commit 'a2b9adafe46c55a2c26dd46163055bbdf3526835'
Marcus Brinkmann [Wed, 2 Feb 2011 12:51:42 +0000 (13:51 +0100)]
Merge commit 'a2b9adafe46c55a2c26dd46163055bbdf3526835'

13 years ago2011-02-02 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Wed, 2 Feb 2011 12:47:53 +0000 (13:47 +0100)]
2011-02-02  Marcus Brinkmann  <mb@g10code.com>

        * w32-util.c (mkstemp): Don't use CreateFile instead of open (the
        function is not used on Windows CE, and the callers were not
        adjusted).

13 years agoFix gpgconf option change if not self-assigning.
Marcus Brinkmann [Fri, 21 Jan 2011 03:21:30 +0000 (04:21 +0100)]
Fix gpgconf option change if not self-assigning.

2011-01-21  Marcus Brinkmann  <mb@g10code.com>

        * engine-gpgconf.c (_gpgme_conf_opt_change): Fix the case that is
        not self-assignment.

13 years agoTypo fixes spotted by Daiki Ueno.
Werner Koch [Fri, 7 Jan 2011 12:53:26 +0000 (13:53 +0100)]
Typo fixes spotted by Daiki Ueno.

13 years agoTypo fixes. Spotted by Daiki Ueno.
Werner Koch [Fri, 7 Jan 2011 12:52:31 +0000 (13:52 +0100)]
Typo fixes.  Spotted by Daiki Ueno.

13 years agoShorten git revision id
Werner Koch [Mon, 3 Jan 2011 15:47:41 +0000 (16:47 +0100)]
Shorten git revision id

13 years agoAdd a git revision number
Werner Koch [Thu, 30 Dec 2010 15:21:45 +0000 (16:21 +0100)]
Add a git revision number

13 years agoAllow multiple patterns for KEYLIST.
Werner Koch [Wed, 8 Dec 2010 09:55:00 +0000 (09:55 +0000)]
Allow multiple patterns for KEYLIST.

13 years ago2010-11-23 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Tue, 23 Nov 2010 10:47:59 +0000 (10:47 +0000)]
2010-11-23  Marcus Brinkmann  <mb@g10code.com>

        * w32-io.c (create_reader, create_writer): Use small stack size on
        Windows CE.

13 years ago2010-11-23 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Tue, 23 Nov 2010 09:46:52 +0000 (09:46 +0000)]
2010-11-23  Marcus Brinkmann  <mb@g10code.com>

* gpgme.h.in (gpgme_conf_arg_new): Make VALUE arg const void *.
* gpgconf.c (_gpgme_conf_arg_new): Likewise.
(gpgme_conf_arg_new): Likewise.
* engine-gpgconf.c (_gpgme_conf_arg_new): Likewise.
(gpgconf_write): Remove debug hack.

13 years ago2010-11-19 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Fri, 19 Nov 2010 16:06:43 +0000 (16:06 +0000)]
2010-11-19  Marcus Brinkmann  <mb@g10code.com>

* engine-gpgconf.c (_gpgme_conf_opt_change): Support
self-assignment.  Requested by Marc Mutz.

13 years ago2010-11-17 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Wed, 17 Nov 2010 02:11:05 +0000 (02:11 +0000)]
2010-11-17  Marcus Brinkmann  <mb@g10code.com>

        * vasprintf.c (int_vasprintf) [HAVE_W32CE_SYSTEM]: Just use a
        fixed size buffer, as va_copy is not easy to fake.

13 years ago2010-11-15 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Mon, 15 Nov 2010 15:30:04 +0000 (15:30 +0000)]
2010-11-15  Marcus Brinkmann  <mb@g10code.com>

* w32-ce.h (strcasecmp, strdup) [_MSC_VER]: Define.
* genkey.c, passphrase.c: Include util.h.

13 years ago2010-11-15 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Mon, 15 Nov 2010 15:29:17 +0000 (15:29 +0000)]
2010-11-15  Marcus Brinkmann  <mb@g10code.com>

* conf-w32ce-msc/fcntl.h: New file.
* conf-w32ce-msc/build.mk (conf_sources): Add fnctl.h.
(sources): Remove memrchr.c.

13 years ago2010-11-15 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Mon, 15 Nov 2010 15:11:59 +0000 (15:11 +0000)]
2010-11-15  Marcus Brinkmann  <mb@g10code.com>

* w32-util.c (_gpgme_w32ce_get_debug_envvar): Fix return value.

13 years ago2010-11-15 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Mon, 15 Nov 2010 15:02:54 +0000 (15:02 +0000)]
2010-11-15  Marcus Brinkmann  <mb@g10code.com>

* conf-w32ce-msc/io.h: New file.
* conf-w32ce-msc/build.mk (conf_sources): Add io.h.

13 years ago2010-11-15 Marcus Brinkmann <mb@g10code.com>
Marcus Brinkmann [Mon, 15 Nov 2010 15:01:17 +0000 (15:01 +0000)]
2010-11-15  Marcus Brinkmann  <mb@g10code.com>

* conf-w32ce-msc/stdint.h: New file.
* conf-w32ce-msc/build.mk (conf_sources): Add stdint.h.
* conf-w32ce-msc/build.mk (copy-static-source): Revert last change.

13 years agoFixes for the MSC build
Werner Koch [Mon, 15 Nov 2010 08:40:30 +0000 (08:40 +0000)]
Fixes for the MSC build

13 years agoMore changes for W32CE with MSC.
Werner Koch [Thu, 4 Nov 2010 08:16:57 +0000 (08:16 +0000)]
More changes for W32CE with MSC.

13 years agoHopefully last changes for building with MSC.
Werner Koch [Wed, 3 Nov 2010 10:33:10 +0000 (10:33 +0000)]
Hopefully last changes for building with MSC.

13 years agoMore include guards.
Werner Koch [Wed, 3 Nov 2010 09:56:27 +0000 (09:56 +0000)]
More include guards.
Provide access for Wince.
Install dummy sehmap.h

13 years agoMight now build for CE using MSC.
Werner Koch [Tue, 2 Nov 2010 20:17:57 +0000 (20:17 +0000)]
Might now build for CE using MSC.

13 years agoFirst take on changes to allow building with MSC for W32CE.
Werner Koch [Tue, 2 Nov 2010 16:27:46 +0000 (16:27 +0000)]
First take on changes to allow building with MSC for W32CE.
Fixed regression in plain W32 build.

13 years ago2010-10-28 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Marcus Brinkmann [Thu, 28 Oct 2010 14:00:14 +0000 (14:00 +0000)]
2010-10-28  Marcus Brinkmann  <marcus.brinkmann@ruhr-uni-bochum.de>

* opassuan.c (gpgme_op_assuan_transact_ext): Fix uninitialized
value use.  Reported by Marc Mutz.

13 years agoFix last change
Werner Koch [Thu, 7 Oct 2010 12:54:17 +0000 (12:54 +0000)]
Fix last change

13 years agoEnable debugging feature for W32CE.
Werner Koch [Thu, 7 Oct 2010 10:58:51 +0000 (10:58 +0000)]
Enable debugging feature for W32CE.
kFreeBSD portability fix.

13 years agoReturn GPG_ERR_MISSING_ISSUER_CERT.
Werner Koch [Thu, 16 Sep 2010 14:17:50 +0000 (14:17 +0000)]
Return GPG_ERR_MISSING_ISSUER_CERT.

13 years agoAdd a new error code.
Werner Koch [Thu, 16 Sep 2010 13:39:00 +0000 (13:39 +0000)]
Add a new error code.

13 years ago2010-09-02 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 2 Sep 2010 21:33:26 +0000 (21:33 +0000)]
2010-09-02  Marcus Brinkmann  <marcus@g10code.de>

* error.c (gpgme_err_code_to_errno): Fix cut and paste bug (thanks
to Marc Mutz).

13 years ago2010-09-01 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 1 Sep 2010 00:46:19 +0000 (00:46 +0000)]
2010-09-01  Marcus Brinkmann  <marcus@g10code.de>

        * w32-io.c: Revert change from 2009-06-18, as it created a race
        condition.

13 years agoChange for gpg-error change.
Werner Koch [Thu, 19 Aug 2010 13:41:05 +0000 (13:41 +0000)]
Change for gpg-error change.

13 years ago2010-08-18 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 18 Aug 2010 14:14:27 +0000 (14:14 +0000)]
2010-08-18  Marcus Brinkmann  <marcus@g10code.de>

        * gpgme.def: Add gpgme_err_code_from_syserror and gpgme_err_set_errno.
        * libgpgme.vers: Likewise.
        * gpgme.h.in (gpgme_error_from_errno): Fix return type to
        gpgme_error_t.
(gpgme_err_code_from_syserror, gpgme_err_set_errno): New prototype.
(gpgme_error_from_syserror): New inline function (why are
        gpgme_err_make_from_errno and gpgme_error_from_errno not inline
        functions?).
        * error.c (gpgme_error_from_errno): Fix return type to gpgme_error_t.
        (gpgme_err_set_errno, gpgme_err_code_from_syserror): New functions.

13 years agoAre you ready already?
Marcus Brinkmann [Wed, 4 Aug 2010 07:47:05 +0000 (07:47 +0000)]
Are you ready already?

13 years agoToo embarrassing for a changelog entry.
Marcus Brinkmann [Wed, 4 Aug 2010 07:40:33 +0000 (07:40 +0000)]
Too embarrassing for a changelog entry.

13 years ago2010-08-03 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Tue, 3 Aug 2010 09:16:01 +0000 (09:16 +0000)]
2010-08-03  Marcus Brinkmann  <marcus@g10code.de>

        * gpgme-tool.c (result_encrypt_to_xml, result_sign_to_xml)
(result_verify_to_xml, result_import_to_xml)
        (result_genkey_to_xml): Check vigorously for null pointers.

13 years ago2010-08-03 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Tue, 3 Aug 2010 09:01:24 +0000 (09:01 +0000)]
2010-08-03  Marcus Brinkmann  <marcus@g10code.de>

        * w32-io.c (GPGCEDEV_IOCTL_ASSIGN_RVID): New macro.
        (_gpgme_io_spawn): Use ASSIGN_RVID.

13 years agocomment typo fixes
Werner Koch [Tue, 29 Jun 2010 17:13:07 +0000 (17:13 +0000)]
comment typo fixes

13 years ago2010-06-11 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 10 Jun 2010 23:29:06 +0000 (23:29 +0000)]
2010-06-11  Marcus Brinkmann  <marcus@g10code.de>

* w32-io.c (_gpgme_io_spawn): Remove debug printf.

13 years ago2010-06-10 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 10 Jun 2010 17:29:43 +0000 (17:29 +0000)]
2010-06-10  Marcus Brinkmann  <marcus@g10code.de>

* gpgme-tool.c (gpgme_server): Use special hack for Windows CE to
get at stdin and stdout.

13 years ago2010-06-10 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 10 Jun 2010 16:13:14 +0000 (16:13 +0000)]
2010-06-10  Marcus Brinkmann  <marcus@g10code.de>

* engine-gpgsm.c (gpgsm_new): Translate returned achild_fds back
to child_fds.

13 years ago2010-06-10 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 10 Jun 2010 13:49:19 +0000 (13:49 +0000)]
2010-06-10  Marcus Brinkmann  <marcus@g10code.de>

* debug.h (TRACE_SUC6): New macro.
* w32-io.c (MAX_SLAFD): New macro.
(fd_table): New static variable.
(new_fd, release_fd): New functions.
(fd_to_handle, handle_to_fd, handle_to_socket): Remove macros.
(MAX_READERS, MAX_WRITERS): Increase to 64.
(notify_table): Increase to MAX_SLAFD.
(struct reader_context_s, struct writer_context_s): Add member
file_sock.
(reader, writer): Use file_hd vs file_sock to decide if socket
operations to use.  Remove auto-detect mode.
(create_reader, create_writer): Set file_sock.  Unblock pending
thread only if this is a pipe fd.
(_gpgme_io_pipe): Allocate fds from table and return slot indices
instead of windows handles.  This allows to properly handle RVIDs.
(_gpgme_io_close): Handle dup'ed file descriptors.
(build_commandline) [HAVE_W32_SYSTEM]: Use RVID from fd table now.
(_gpgme_io_spawn): Use fd table now.
(_gpgme_io_fd2str): Use RVID from fd table now.
(_gpgme_io_dup): Implement using fd table.
(_gpgme_io_socket): Allocate fds from table.
(_gpgme_io_connect): Use fd from table.

13 years ago * debug.h (TRACE_SUC6): New macro.
Marcus Brinkmann [Thu, 10 Jun 2010 13:41:12 +0000 (13:41 +0000)]
* debug.h (TRACE_SUC6): New macro.

13 years ago2010-06-09 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 9 Jun 2010 13:33:31 +0000 (13:33 +0000)]
2010-06-09  Marcus Brinkmann  <marcus@g10code.de>

* w32-io.c [HAVE_W32CE_SYSTEM]: Include assuan.h and winioctl.h.
(GPGCEDEV_IOCTL_UNBLOCK) [HAVE_W32CE_SYSTEM]: Define.
(set_synchronize) [HAVE_W32CE_SYSTEM]: Stub it out.
(is_socket): Allow to return -1 for auto-detect (old behaviour).
(is_socket) [HAVE_W32CE_SYSTEM]: Return -1.
(reader): Handle auto-detect case.  Handle ctx->stop_me before
checking for EOF.
(destroy_reader) [HAVE_W32CE_SYSTEM]: Unblock a pending reader.
(writer): Handle auto-detect case.  Handle ctx->stop_me with
ERROR_BUSY.
(destroy_writer) [HAVE_W32CE_SYSTEM]: Unblock a pending writer.
(_gpgme_io_pipe) [HAVE_W32CE_SYSTEM]: Implement in terms of a
half-pipe.
(build_commandline) [HAVE_W32CE_SYSTEM]: New function.
(_gpgme_io_spawn) [HAVE_W32CE_SYSTEM]: Implement it differently
for this platform.
(_gpgme_io_fd2str) [HAVE_W32CE_SYSTEM]: Implement it for RVIDs.
(_gpgme_io_dup) [HAVE_W32CE_SYSTEM]: Stub it out.

13 years ago2010-06-09 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 9 Jun 2010 13:23:30 +0000 (13:23 +0000)]
2010-06-09  Marcus Brinkmann  <marcus@g10code.de>

* gpgme-tool.c (result_add_timestamp): Add missing NULL argument.
(result_sign_to_xml): Protect against NULL fingerprint.
(struct server): New members input_fd, input_filename,
input_stream output_fd, output_filename, output_stream,
message_filename, message_stream.
(server_reset_fds): Deallocate those.
(server_parse_fd): New function.
(server_data_obj): Take optional filename argument and direction
argument.  Also take new argument to return a filestream that
needs to be closed after destroying the data object.
Change all callers, too.
(input_notify, output_notify): Removed.
(cmd_input, cmd_output): New functions.
(gpgme_server): Do not register input and output notifier.
(register_commands): Use cmd_input and cmd_output.
(cmd_message): Rewritten to use server_parse_fd.
(cmd_delete, cmd_keylist): Fix inverted option check.
(main) [HAVE_W32CE_SYSTEM]: Sleep a bit to work around bug in ssh.

13 years ago2010-06-09 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 9 Jun 2010 13:14:44 +0000 (13:14 +0000)]
2010-06-09  Marcus Brinkmann  <marcus@g10code.de>

* genkey.c (gpgme_op_genkey): Return err with TRACE_ERR.

13 years ago2010-05-12 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 12 May 2010 18:20:36 +0000 (18:20 +0000)]
2010-05-12  Marcus Brinkmann  <marcus@g10code.de>

* conversion.c (_gpgme_timegm) [HAVE_W32_SYSTEM]: New static
function.
(_gpgme_parse_timestamp) [HAVE_W32_SYSTEM]: Use it.

13 years ago2010-05-12 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 12 May 2010 17:40:08 +0000 (17:40 +0000)]
2010-05-12  Marcus Brinkmann  <marcus@g10code.de>

* configure.ac: Check for setlocale.

src/
2010-05-12  Marcus Brinkmann  <marcus@g10code.de>

* gpgme-tool.c (main): Protect call to setlocale with
HAVE_SETLOCALE.

13 years ago2010-05-12 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 12 May 2010 17:21:36 +0000 (17:21 +0000)]
2010-05-12  Marcus Brinkmann  <marcus@g10code.de>

* Makefile.am (system_components): Remove custom cppflags from
RCCOMPILE (because gpg-error adds -idirafter that makes RC bail.
[HAVE_W32CE_SYSTEM]: Add w32-ce.h and w32-ce.c, clear
libexec_PROGRAMS.
* w32-ce.h, w32-ce.c: New files.

13 years ago2010-05-12 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Wed, 12 May 2010 16:55:39 +0000 (16:55 +0000)]
2010-05-12  Marcus Brinkmann  <marcus@g10code.de>

* priv-io.h: Include <sys/types.h>
* util.h: Likewise.

13 years ago2010-05-11 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Tue, 11 May 2010 17:20:45 +0000 (17:20 +0000)]
2010-05-11  Marcus Brinkmann  <marcus@g10code.de>

* w32-util.c: Include ath.h
(HAVE_ALLOW_SET_FOREGROUND_WINDOW) [!HAVE_W32CE_SYSTEM]: Define
it.
(RTLD_LAZY, dlopen, dlsym,
dlclose) [!HAVE_ALLOW_SET_FORGROUND_WINDOW]: Don't define anymore.
(_gpgme_allow_set_foreground_window) [!HAVE_ALLOW_SET_FOREGROUND_WINDOW]:
Make it a stub.
(read_w32_registry_string): Use FooA variants of Windows functions
instead of Foo (which dispatches depending on UNICODE).
[!HAVE_W32CE_SYSTEM]: Don't check environment.
(w32_shgetfolderpath): Remove.
(find_program_at_standard_place): Call
SHGetSpecialFolderPath (which is available on all Windows systems
and also Windows CE).
(mkstemp): Use ath_self instead of getpid.
(_gpgme_mkstemp): Use GetTempPathA instead of GetTempPath.

13 years ago2010-05-11 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Tue, 11 May 2010 17:01:40 +0000 (17:01 +0000)]
2010-05-11  Marcus Brinkmann  <marcus@g10code.de>

* gpgme.h.in: Use _WIN32 instead of _MSC_VER.  Include time.h for
time_t.

13 years agoBetter detection of a missing libassuan
Werner Koch [Fri, 7 May 2010 23:22:38 +0000 (23:22 +0000)]
Better detection of a missing libassuan

13 years ago2010-05-07 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Fri, 7 May 2010 02:14:04 +0000 (02:14 +0000)]
2010-05-07  Marcus Brinkmann  <marcus@g10code.de>

* autogen.sh: Update the thing.

13 years ago2010-05-07 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Fri, 7 May 2010 01:32:54 +0000 (01:32 +0000)]
2010-05-07  Marcus Brinkmann  <marcus@g10code.de>

* engine-g13.c, gpgme.c, engine-gpgsm.c, engine-gpg.c,
op-support.c, engine-assuan.c, gpgme-tool.c: Include <locale.h>
only if available with HAVE_LOCALE_H and conditionalize use of
LC_CTYPE on its definition.
* engine-gpgconf.c: Do not include <locale.h>.

13 years ago2010-05-07 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Fri, 7 May 2010 01:06:14 +0000 (01:06 +0000)]
2010-05-07  Marcus Brinkmann  <marcus@g10code.de>

* engine-gpgsm.c (gpgsm_new, start): Cast between int and
assuan_fd_t.
* assuan-support.c (my_pipe, my_close, my_read, my_write): Likewise.
* gpgme-tool.c (server_data_obj, server_reset_fds, gpgme_server),
(my_recvmsg, my_sendmsg, my_spawn): Likewise.
* engine-assuan.c (start): Likewise.
* engine-g13.c (start): Likewise.

13 years ago2010-05-06 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 6 May 2010 15:16:57 +0000 (15:16 +0000)]
2010-05-06  Marcus Brinkmann  <marcus@g10code.de>

* w32-glib-io.c, w32-io.c, w32-qt-io.cpp, w32-sema.c, w32-util.c:
Do not include <signal.h>.

13 years ago2010-05-06 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 6 May 2010 14:49:43 +0000 (14:49 +0000)]
2010-05-06  Marcus Brinkmann  <marcus@g10code.de>

* configure.ac: Detect Windows CE.
(HAVE_W32CE_SYSTEM): New symbol and automake conditional.
* ltmain.sh, m4/libtool.m4: Patch so that it works for Windows CE.

13 years ago2010-05-06 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Thu, 6 May 2010 13:39:55 +0000 (13:39 +0000)]
2010-05-06  Marcus Brinkmann  <marcus@g10code.de>

* configure.ac: Require libgpg-error 1.8.

src/
2010-05-06  Marcus Brinkmann  <marcus@g10code.de>

* sign.c, data-user.c, conversion.c, debug.c, verify.c, data.c,
decrypt.c, delete.c, assuan-support.c, import.c, engine-gpgsm.c,
data-mem.c, op-support.c, w32-io.c, w32-util.c, data-compat.c: Use
gpg_error_from_syserror instead gpg_error_from_errno, and use
gpg_err_set_errno to set error number.
* setenv.c: Include <gpg-error.h> and define __set_errno to use
gpg_err_set_errno.
* gpgme-tool.c (ARGP_ERR_UNKNOWN): Define to EDEADLOCK (which is
mapped in Windows CE) instead of E2BIG (which is not).
(gt_import_keys): Initialize err.

14 years ago2010-04-19 Marcus Brinkmann <marcus@g10code.de>
Marcus Brinkmann [Mon, 19 Apr 2010 16:59:23 +0000 (16:59 +0000)]
2010-04-19  Marcus Brinkmann  <marcus@g10code.de>

* assuan-support.c (my_spawn): Cast to avoid warning.
* engine-g13.c (g13_new): Make ARGV array of pointer to const
char.
(g13_assuan_simple_command) [!USE_DESCRIPTOR_FUNCTION]: Don't define.
* ops.h (_gpgme_key_append_name): Same in prototype.
* key.c (_gpgme_key_append_name): Make SRC argument pointer to
const char.
* posix-util.c (_gpgme_get_uiserver_socket_path): Make HOMEDIR
const.
* vfs-mount.c (gpgme_op_vfs_transact_start): Never define this
potentially useful but currently unused function.
* vfs-create.c (gpgme_op_vfs_transact_start): Likewise.

14 years agoMore robust detection of handle and sockets
Werner Koch [Fri, 16 Apr 2010 14:08:41 +0000 (14:08 +0000)]
More robust detection of handle and sockets

14 years agoMake generated header file read-only in an emacs buffer.
Werner Koch [Mon, 15 Mar 2010 12:04:53 +0000 (12:04 +0000)]
Make generated header file read-only in an emacs buffer.

14 years agoAdd constant to the template and not to a built file.
Werner Koch [Fri, 12 Mar 2010 22:24:13 +0000 (22:24 +0000)]
Add constant to the template and not to a built file.

14 years agoDetect old gpg versions not featuring the --passwd command.
Werner Koch [Fri, 12 Mar 2010 18:03:02 +0000 (18:03 +0000)]
Detect old gpg versions not featuring the --passwd command.

14 years agoHack to start the agent as a side-effect of a secret key listing
Werner Koch [Tue, 9 Mar 2010 11:15:53 +0000 (11:15 +0000)]
Hack to start the agent as a side-effect of a secret key listing

14 years agoChanged the close notify implementaion to allow for more than 256 fds.
Werner Koch [Wed, 17 Feb 2010 21:40:02 +0000 (21:40 +0000)]
Changed the close notify implementaion to allow for more than 256 fds.
We should write a test case for it, though.