gpgme/assuan
Marcus Brinkmann 13d2e5d1c7 2006-12-17 Marcus Brinkmann <marcus@g10code.de>
* configure.ac: Fix two typos in last change.

gpgme/
2006-12-17  Marcus Brinkmann  <marcus@g10code.de>

	* gpgme.c (gpgme_set_protocol): Shut down the engine when
	switching protocols.
	(gpgme_ctx_set_engine_info): Likewise for engine info.
	* engine.h (_gpgme_engine_reset): New function prototype.
	* engine.c (_gpgme_engine_reset): New function.
	* engine-backend.h (struct engine_ops): New member RESET.
	* rungpg.c (_gpgme_engine_ops_gpg): Add NULL for reset function.
	* engine-gpgsm.c (_gpgme_engine_ops_gpgsm)
	[USE_DESCRIPTOR_PASSING]: Add gpgsm_reset for reset.
	(_gpgme_engine_ops_gpgsm) [!USE_DESCRIPTOR_PASSING]: Add NULL for
	reset function.
	(gpgsm_reset) [USE_DESCRIPTOR_PASSING]: New function.
	* op-support.c (_gpgme_op_reset): Try to use the engine's reset
	function if available.
	* engine-gpgsm.c (gpgsm_new): Move code to dup status_fd to ...
	(start): ... here.
	* posix-io.c (_gpgme_io_recvmsg, _gpgme_io_sendmsg): New functions.
2006-12-17 21:12:40 +00:00
..
assuan-buffer.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-client.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-connect.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-defs.h Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-handler.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-inquire.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-io.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-listen.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-logging.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-pipe-connect.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-pipe-server.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-socket-connect.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-socket-server.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-socket.c assuan/ 2006-09-19 14:01:54 +00:00
assuan-uds.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan-util.c Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
assuan.h 2006-12-17 Marcus Brinkmann <marcus@g10code.de> 2006-12-17 21:12:40 +00:00
ChangeLog Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
funopen.c assuan/ 2006-09-19 14:01:54 +00:00
Makefile.am assuan/ 2006-09-19 14:01:54 +00:00
mkerrors Update to rev 231 of libassuan. 2006-11-29 16:25:46 +00:00
README.1st Merged changes from upstream libassuan to allow building a W32 DLL. 2005-08-09 13:19:24 +00:00

This is a modified copy of the libassuan library.  Don't modify it,
but instead modify the original Assuan library and merge the changes
back into this copy.

The changes to the original libassuan, that have to preserved when
updating this directory, are:

* Makefile.am
** Build the library with libtool as a convenience library, which can
   be linked into the shared library GPGME.
** Do not install the library or the header file.
** Define -D_ASSUAN_IN_GPGME_BUILD_ASSUAN to wrap some POSIX functions
   with ATH replacements.

* assuan.h
** Preserve the block between "Begin/End GPGME specific modifications".
   In particular make sure that
     #define _ASSUAN_EXT_SYM_PREFIX _gpgme_
     #define _ASSUAN_NO_PTH 
     #define _ASSUAN_NO_FIXED_SIGNALS 
     #define _ASSUAN_USE_DOUBLE_FORK
   are defined.  This puts all exported Assuan functions in the _gpgme
   namespace.  It also wraps all system functions that are wrapped by
   GNU Pth to _gpgme wrappers.


 Copyright 2004 g10 Code GmbH

 This file is free software; as a special exception the author gives
 unlimited permission to copy and/or distribute it, with or without
 modifications, as long as this notice is preserved.

 This file is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.