Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/gpgme/files: gpgme-1.2.0-fix_implicit_declaration.patch gpgme-1.1.6-cvs.patch
Date: Mon, 22 Jun 2009 01:33:51
Message-Id: E1MIYPs-0002YE-VE@stork.gentoo.org
1 arfrever 09/06/22 01:33:48
2
3 Added: gpgme-1.2.0-fix_implicit_declaration.patch
4 Removed: gpgme-1.1.6-cvs.patch
5 Log:
6 Version bump (bug #275000).
7 (Portage version: 13659-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-crypt/gpgme/files/gpgme-1.2.0-fix_implicit_declaration.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gpgme/files/gpgme-1.2.0-fix_implicit_declaration.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gpgme/files/gpgme-1.2.0-fix_implicit_declaration.patch?rev=1.1&content-type=text/plain
14
15 Index: gpgme-1.2.0-fix_implicit_declaration.patch
16 ===================================================================
17 --- assuan/assuan-socket.c
18 +++ assuan/assuan-socket.c
19 @@ -35,6 +35,7 @@
20 #include <assert.h>
21
22 #include "assuan-defs.h"
23 +#include "priv-io.h"
24
25 /* Hacks for Slowaris. */
26 #ifndef PF_LOCAL
27 --- src/priv-io.h
28 +++ src/priv-io.h
29 @@ -22,6 +22,7 @@
30 #ifndef IO_H
31 #define IO_H
32
33 +#include <sys/socket.h>
34
35 /* A single file descriptor passed to spawn. For child fds, dup_to
36 specifies the fd it should become in the child, but only 0, 1 and 2
37 @@ -50,6 +51,7 @@
38
39 /* These function are either defined in posix-io.c or w32-io.c. */
40 void _gpgme_io_subsystem_init (void);
41 +int _gpgme_io_connect (int fd, struct sockaddr *addr, int addrlen);
42 int _gpgme_io_read (int fd, void *buffer, size_t count);
43 int _gpgme_io_write (int fd, const void *buffer, size_t count);
44 int _gpgme_io_pipe (int filedes[2], int inherit_idx);