aboutsummaryrefslogtreecommitdiffstats
path: root/src/sign.c
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2009-06-22 14:50:17 +0000
committerMarcus Brinkmann <[email protected]>2009-06-22 14:50:17 +0000
commit1c454aee81e38ffbc4a615092742ae4b1e37b57f (patch)
treefa9b1896ce8bf617b6712ba95620e811d0abb9ef /src/sign.c
parent2009-06-18 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-1c454aee81e38ffbc4a615092742ae4b1e37b57f.tar.gz
gpgme-1c454aee81e38ffbc4a615092742ae4b1e37b57f.zip
2009-06-22 Marcus Brinkmann <[email protected]>
* configure.ac: Add AC_TYPE_UINTPTR_T. * assuan/assuan.h [_ASSUAN_IN_GPGME_BUILD_ASSUAN]: Declare _gpgme_io_connect. src/ 2009-06-22 Marcus Brinkmann <[email protected]> * debug.h: Everywhere, use %p instead of 0x%x to print pointer. [HAVE_STDINT_H]: Include <stdint.h>. (_TRACE, TRACE, TRACE0, TRACE1, TRACE2, TRACE3, TRACE6): Cast tag to (uintptr_t) before casting it to (void*) to silence GCC warning. * gpgme.h.in (_GPGME_DEPRECATED_OUTSIDE_GPGME): New macro. * sign.c (_GPGME_IN_GPGME): Define it. * keylist.c (_GPGME_IN_GPGME): Define it. * debug.c (_gpgme_debug_begin, _gpgme_debug_add): Handle error in vasprintf and asprintf. * priv-io.h: Include <sys/socket.h>. Declare _gpgme_io_connect. tests/ 2009-06-22 Marcus Brinkmann <[email protected]> * gpg/t-support.h (passphrase_cb): Implement write() according to the book to silence compiler warning. * gpgsm/t-support.h (passphrase_cb): Likewise.
Diffstat (limited to 'src/sign.c')
-rw-r--r--src/sign.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sign.c b/src/sign.c
index 8405b690..03007bdf 100644
--- a/src/sign.c
+++ b/src/sign.c
@@ -26,6 +26,8 @@
#include <string.h>
#include <errno.h>
+/* Suppress warning for accessing deprecated member "class". */
+#define _GPGME_IN_GPGME 1
#include "gpgme.h"
#include "context.h"
#include "ops.h"