diff options
author | lioux <lioux@FreeBSD.org> | 2003-05-22 01:29:39 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2003-05-22 01:29:39 +0000 |
commit | 768b67f0b979b3056510b9203b14d2edae18972b (patch) | |
tree | 0e3207bbb614e4fe83e83e93ba16861c110ee613 /security/gpgme03/files | |
parent | bfafbcd95327204a037e71d758f91c68a80d155b (diff) | |
download | FreeBSD-ports-768b67f0b979b3056510b9203b14d2edae18972b.zip FreeBSD-ports-768b67f0b979b3056510b9203b14d2edae18972b.tar.gz |
o Fix gpgsm support so that conditional WITH_GPGSM really works
o Bump PORTREVISION
PR: 52459
Submitted by: Michael Nottebrock <michaelnottebrock@gmx.net>
Approved by: maintainer
Diffstat (limited to 'security/gpgme03/files')
3 files changed, 47 insertions, 0 deletions
diff --git a/security/gpgme03/files/patch-assuan::assuan-handler.c b/security/gpgme03/files/patch-assuan::assuan-handler.c new file mode 100644 index 0000000..3c73877 --- /dev/null +++ b/security/gpgme03/files/patch-assuan::assuan-handler.c @@ -0,0 +1,27 @@ +--- assuan/assuan-handler.c.orig Thu Jan 30 07:58:09 2003 ++++ assuan/assuan-handler.c Thu Jan 30 07:58:27 2003 +@@ -29,6 +29,24 @@ + #define digitp(a) ((a) >= '0' && (a) <= '9') + + ++#if !HAVE_FOPENCOOKIE ++/* Provide structure for our dummy replacement function. Usually this ++ is defined in ../common/util.h but assuan should be self ++ contained. */ ++/* Fixme: Remove fopencoookie :-(( */ ++typedef struct ++{ ++ ssize_t (*read)(void*,char*,size_t); ++ ssize_t (*write)(void*,const char*,size_t); ++ int (*seek)(void*,off_t*,int); ++ int (*close)(void*); ++} _IO_cookie_io_functions_t; ++typedef _IO_cookie_io_functions_t cookie_io_functions_t; ++FILE *fopencookie (void *cookie, const char *opentype, ++ cookie_io_functions_t funclist); ++#endif /*!HAVE_FOPENCOOKIE*/ ++ ++ + static int + dummy_handler (ASSUAN_CONTEXT ctx, char *line) + { diff --git a/security/gpgme03/files/patch-assuan::assuan-socket-connect.c b/security/gpgme03/files/patch-assuan::assuan-socket-connect.c new file mode 100644 index 0000000..74acc38 --- /dev/null +++ b/security/gpgme03/files/patch-assuan::assuan-socket-connect.c @@ -0,0 +1,10 @@ +--- assuan/assuan-socket-connect.c.orig Wed Jan 29 15:30:12 2003 ++++ assuan/assuan-socket-connect.c Wed Jan 29 15:30:28 2003 +@@ -23,6 +23,7 @@ + #include <stddef.h> + #include <stdio.h> + #include <errno.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <sys/un.h> + #include <unistd.h> diff --git a/security/gpgme03/files/patch-assuan::assuan-socket-server.c b/security/gpgme03/files/patch-assuan::assuan-socket-server.c new file mode 100644 index 0000000..af8a397 --- /dev/null +++ b/security/gpgme03/files/patch-assuan::assuan-socket-server.c @@ -0,0 +1,10 @@ +--- assuan/assuan-socket-server.c.orig Wed Jan 29 15:27:13 2003 ++++ assuan/assuan-socket-server.c Wed Jan 29 15:27:38 2003 +@@ -22,6 +22,7 @@ + #include <stdlib.h> + #include <stdio.h> + #include <errno.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <sys/un.h> + #include <unistd.h> |