* [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3
@ 2016-01-30 18:01 Bernd Kuhls
2016-01-30 18:01 ` [Buildroot] [PATCH 2/2] package/libseccomp: fix musl build Bernd Kuhls
2016-02-01 13:16 ` [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3 Thomas Petazzoni
0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2016-01-30 18:01 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/libseccomp/libseccomp.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libseccomp/libseccomp.mk b/package/libseccomp/libseccomp.mk
index a188298..69559f7 100644
--- a/package/libseccomp/libseccomp.mk
+++ b/package/libseccomp/libseccomp.mk
@@ -4,7 +4,7 @@
#
################################################################################
-LIBSECCOMP_VERSION = v2.2.0
+LIBSECCOMP_VERSION = v2.2.3
LIBSECCOMP_SITE = $(call github,seccomp,libseccomp,$(LIBSECCOMP_VERSION))
LIBSECCOMP_LICENSE = LGPLv2.1
LIBSECCOMP_LICENSE_FILES = LICENSE
--
2.7.0.rc3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/libseccomp: fix musl build
2016-01-30 18:01 [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3 Bernd Kuhls
@ 2016-01-30 18:01 ` Bernd Kuhls
2016-02-01 13:16 ` Thomas Petazzoni
2016-02-01 13:16 ` [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3 Thomas Petazzoni
1 sibling, 1 reply; 4+ messages in thread
From: Bernd Kuhls @ 2016-01-30 18:01 UTC (permalink / raw)
To: buildroot
Fixes
http://autobuild.buildroot.net/results/0cd/0cd47d7e6a49c268b57981ae8bb9abe4c4a183c7/
http://autobuild.buildroot.net/results/34b/34b0bea52bd7e65a927142dc0e1f28f85629c634/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/libseccomp/0002-musl.patch | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
create mode 100644 package/libseccomp/0002-musl.patch
diff --git a/package/libseccomp/0002-musl.patch b/package/libseccomp/0002-musl.patch
new file mode 100644
index 0000000..c3affba
--- /dev/null
+++ b/package/libseccomp/0002-musl.patch
@@ -0,0 +1,33 @@
+Fix musl build
+
+Downloaded from upstream PR:
+https://github.com/seccomp/libseccomp/pull/23
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+
+
+From eb5382287cd25235e760b5da4939510b11bbf2a1 Mon Sep 17 00:00:00 2001
+From: Kylie McClain <somasis@exherbo.org>
+Date: Fri, 1 Jan 2016 13:12:59 -0500
+Subject: [PATCH] system.h: Remove conflicting kernel header include
+
+This fixes building on musl libc, since musl does not include kernel
+headers. I've tested this as working on both glibc and musl.
+
+Signed-off-by: Kylie McClain <somasis@exherbo.org>
+---
+ src/system.h | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/src/system.h b/src/system.h
+index 4660679..e84b0a0 100644
+--- a/src/system.h
++++ b/src/system.h
+@@ -23,7 +23,6 @@
+ #define _SYSTEM_H
+
+ #include <linux/filter.h>
+-#include <linux/prctl.h>
+
+ #include "configure.h"
+
--
2.7.0.rc3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3
2016-01-30 18:01 [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3 Bernd Kuhls
2016-01-30 18:01 ` [Buildroot] [PATCH 2/2] package/libseccomp: fix musl build Bernd Kuhls
@ 2016-02-01 13:16 ` Thomas Petazzoni
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-02-01 13:16 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 30 Jan 2016 19:01:58 +0100, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/libseccomp/libseccomp.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/libseccomp: fix musl build
2016-01-30 18:01 ` [Buildroot] [PATCH 2/2] package/libseccomp: fix musl build Bernd Kuhls
@ 2016-02-01 13:16 ` Thomas Petazzoni
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-02-01 13:16 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 30 Jan 2016 19:01:59 +0100, Bernd Kuhls wrote:
> diff --git a/package/libseccomp/0002-musl.patch b/package/libseccomp/0002-musl.patch
> new file mode 100644
> index 0000000..c3affba
> --- /dev/null
> +++ b/package/libseccomp/0002-musl.patch
> @@ -0,0 +1,33 @@
> +Fix musl build
> +
> +Downloaded from upstream PR:
> +https://github.com/seccomp/libseccomp/pull/23
> +
> +Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
This should go ...
> +
> +
> +From eb5382287cd25235e760b5da4939510b11bbf2a1 Mon Sep 17 00:00:00 2001
> +From: Kylie McClain <somasis@exherbo.org>
> +Date: Fri, 1 Jan 2016 13:12:59 -0500
> +Subject: [PATCH] system.h: Remove conflicting kernel header include
> +
> +This fixes building on musl libc, since musl does not include kernel
> +headers. I've tested this as working on both glibc and musl.
> +
> +Signed-off-by: Kylie McClain <somasis@exherbo.org>
... here
I've fixed this and applied your patch.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-01 13:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-30 18:01 [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3 Bernd Kuhls
2016-01-30 18:01 ` [Buildroot] [PATCH 2/2] package/libseccomp: fix musl build Bernd Kuhls
2016-02-01 13:16 ` Thomas Petazzoni
2016-02-01 13:16 ` [Buildroot] [PATCH 1/2] package/libseccomp: bump version to 2.2.3 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox