All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] p11-kit: bump to version 0.23.2
@ 2015-12-08 12:09 Gustavo Zacarias
  2015-12-08 15:50 ` Vicente Olivert Riera
  2015-12-08 20:52 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2015-12-08 12:09 UTC (permalink / raw)
  To: buildroot

0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch is upstream
so drop it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 ...ansport.c-include-sys-select.h-for-fd_set.patch | 36 ----------------------
 package/p11-kit/p11-kit.hash                       |  2 +-
 package/p11-kit/p11-kit.mk                         |  2 +-
 3 files changed, 2 insertions(+), 38 deletions(-)
 delete mode 100644 package/p11-kit/0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch

diff --git a/package/p11-kit/0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch b/package/p11-kit/0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch
deleted file mode 100644
index bff732c..0000000
--- a/package/p11-kit/0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 1071268d06da269de56c895af940e6f15bcf79e7 Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Wed, 2 Dec 2015 07:15:43 -0300
-Subject: [PATCH] rpc-transport.c: include sys/select.h for fd_set
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-fd_set and friends, according to POSIX.1-2001, needs sys/select.h, so
-include it otherwise the build fails for uClibc:
-
-p11-kit/rpc-transport.c: In function ?rpc_socket_read?:
-p11-kit/rpc-transport.c:350:2: error: unknown type name ?fd_set?
-p11-kit/rpc-transport.c:416:4: warning: implicit declaration of function
-?FD_ZERO? [-Wimplicit-function-declaration]
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
----
- p11-kit/rpc-transport.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/p11-kit/rpc-transport.c b/p11-kit/rpc-transport.c
-index 7176b39..5251e11 100644
---- a/p11-kit/rpc-transport.c
-+++ b/p11-kit/rpc-transport.c
-@@ -55,6 +55,7 @@
- #include <string.h>
- 
- #ifdef OS_UNIX
-+#include <sys/select.h>
- #include <sys/socket.h>
- #include <sys/wait.h>
- #include <sys/un.h>
--- 
-2.4.10
-
diff --git a/package/p11-kit/p11-kit.hash b/package/p11-kit/p11-kit.hash
index d43a8fd..c0182eb 100644
--- a/package/p11-kit/p11-kit.hash
+++ b/package/p11-kit/p11-kit.hash
@@ -1,2 +1,2 @@
 # Locally calculated after checking pgp signature
-sha256	e57371669f3b157141b86c429bd9c29741994b2f5ff115fcb8a03e751b0f6ac4	p11-kit-0.23.1.tar.gz
+sha256	ba726ea8303c97467a33fca50ee79b7b35212964be808ecf9b145e9042fdfaf0	p11-kit-0.23.2.tar.gz
diff --git a/package/p11-kit/p11-kit.mk b/package/p11-kit/p11-kit.mk
index 03d26e2..e856cac 100644
--- a/package/p11-kit/p11-kit.mk
+++ b/package/p11-kit/p11-kit.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-P11_KIT_VERSION = 0.23.1
+P11_KIT_VERSION = 0.23.2
 P11_KIT_SITE = http://p11-glue.freedesktop.org/releases
 P11_KIT_DEPENDENCIES = host-pkgconf libffi libtasn1
 P11_KIT_INSTALL_STAGING = YES
-- 
2.4.10

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] p11-kit: bump to version 0.23.2
  2015-12-08 12:09 [Buildroot] [PATCH] p11-kit: bump to version 0.23.2 Gustavo Zacarias
@ 2015-12-08 15:50 ` Vicente Olivert Riera
  2015-12-08 20:52 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Vicente Olivert Riera @ 2015-12-08 15:50 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On 08/12/15 12:09, Gustavo Zacarias wrote:
> 0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch is upstream
> so drop it.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Build test for MIPS architecture:

$ grep -E ^P11_KIT_VERSION package/p11-kit/p11-kit.mk
P11_KIT_VERSION = 0.23.2

$ file output/target/usr/bin/p11-kit
output/target/usr/bin/p11-kit: ELF 32-bit LSB executable, MIPS, version
1 (SYSV), dynamically linked, interpreter /lib/ld-linux-mipsn8.so.1, for
GNU/Linux 4.0.0, stripped

Regards,

Vincent.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] p11-kit: bump to version 0.23.2
  2015-12-08 12:09 [Buildroot] [PATCH] p11-kit: bump to version 0.23.2 Gustavo Zacarias
  2015-12-08 15:50 ` Vicente Olivert Riera
@ 2015-12-08 20:52 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2015-12-08 20:52 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > 0002-rpc-transport.c-include-sys-select.h-for-fd_set.patch is upstream
 > so drop it.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-12-08 20:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-08 12:09 [Buildroot] [PATCH] p11-kit: bump to version 0.23.2 Gustavo Zacarias
2015-12-08 15:50 ` Vicente Olivert Riera
2015-12-08 20:52 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.