Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libcap: Fix build error with kernel headers < 3.6
@ 2014-10-26 17:41 Bernd Kuhls
  2014-10-26 17:54 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2014-10-26 17:41 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/cce/cceb1ccacec36fb7ef41bb7cdb13b3014813b599/

XATTR_NAME_CAPS appears in kernel headers since 3.7:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/include/uapi/linux/xattr.h?id=v3.7

Before it was an internal define of the kernel:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/include/linux/xattr.h?id=607ca46e97a1b6594b29647d98a32d545c24bdff

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libcap/Config.in |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/libcap/Config.in b/package/libcap/Config.in
index 5b0c827..a019928 100644
--- a/package/libcap/Config.in
+++ b/package/libcap/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_LIBCAP
 	bool "libcap"
+	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
 	help
 	  This library implements the user-space interfaces to the
 	  POSIX 1003.1e capabilities available in Linux kernels. These
@@ -22,3 +23,6 @@ config BR2_PACKAGE_LIBCAP_TOOLS
 	  CONFIG_EXT2_FS_XATTR and CONFIG_EXT2_FS_SECURITY for ext2).
 
 endif
+
+comment "libcap needs headers >= 3.7"
+	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
-- 
1.7.10.4

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

* [Buildroot] [PATCH 1/1] package/libcap: Fix build error with kernel headers < 3.6
  2014-10-26 17:41 [Buildroot] [PATCH 1/1] package/libcap: Fix build error with kernel headers < 3.6 Bernd Kuhls
@ 2014-10-26 17:54 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2014-10-26 17:54 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Sun, 26 Oct 2014 18:41:36 +0100, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/cce/cceb1ccacec36fb7ef41bb7cdb13b3014813b599/
> 
> XATTR_NAME_CAPS appears in kernel headers since 3.7:
> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/include/uapi/linux/xattr.h?id=v3.7
> 
> Before it was an internal define of the kernel:
> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/include/linux/xattr.h?id=607ca46e97a1b6594b29647d98a32d545c24bdff
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/libcap/Config.in |    4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/package/libcap/Config.in b/package/libcap/Config.in
> index 5b0c827..a019928 100644
> --- a/package/libcap/Config.in
> +++ b/package/libcap/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_LIBCAP
>  	bool "libcap"
> +	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
>  	help
>  	  This library implements the user-space interfaces to the
>  	  POSIX 1003.1e capabilities available in Linux kernels. These
> @@ -22,3 +23,6 @@ config BR2_PACKAGE_LIBCAP_TOOLS
>  	  CONFIG_EXT2_FS_XATTR and CONFIG_EXT2_FS_SECURITY for ext2).
>  
>  endif
> +
> +comment "libcap needs headers >= 3.7"
> +	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7

When you add a new dependency to a package, it needs to be propagated
to the reverse dependencies of that package:

package/cdrkit/Config.in:       select BR2_PACKAGE_LIBCAP
package/lxc/Config.in:  select BR2_PACKAGE_LIBCAP
package/squid/Config.in:        select BR2_PACKAGE_LIBCAP
package/systemd/Config.in:      select BR2_PACKAGE_LIBCAP

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2014-10-26 17:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-26 17:41 [Buildroot] [PATCH 1/1] package/libcap: Fix build error with kernel headers < 3.6 Bernd Kuhls
2014-10-26 17:54 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox