summaryrefslogtreecommitdiff
path: root/package/audit
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2015-08-13 23:57:45 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-08-18 10:58:53 +0200
commitc17af71d2c2dbc1ea486344e027da12d7633fba3 (patch)
tree218b65123a22e102b5266586e42db26fe300897a /package/audit
parent4d53184aff4e0e57ddc6ef64a6891f13a1aa9a67 (diff)
package/audit: not available for musl
audit uses strndupa() which is missing from musl. Even though the implementation of strndupa is not too complex, we won't go as far as duplicating it in audit, and we just disable audit for the musl C library. Fixes; http://autobuild.buildroot.org/results/e22/e22a70f9ff14bc52f642a6135da44c14e41b6cbb/ http://autobuild.buildroot.org/results/233/2333c9b3d8f81b15602263b918d422e440f09d60/ ... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Clayton Shotwell <clayton.shotwell@rockwellcollins.com> Cc: Matthew Weber <matthew.weber@rockwellcollins.com> Cc: Ryan Barnett <rjbarnet@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/audit')
-rw-r--r--[-rwxr-xr-x]package/audit/0001-Missed-cross-compile-fixes.patch0
-rw-r--r--package/audit/Config.in6
2 files changed, 4 insertions, 2 deletions
diff --git a/package/audit/0001-Missed-cross-compile-fixes.patch b/package/audit/0001-Missed-cross-compile-fixes.patch
index a52d0cdcd..a52d0cdcd 100755..100644
--- a/package/audit/0001-Missed-cross-compile-fixes.patch
+++ b/package/audit/0001-Missed-cross-compile-fixes.patch
diff --git a/package/audit/Config.in b/package/audit/Config.in
index 8ac1b4f25..717c364fd 100644
--- a/package/audit/Config.in
+++ b/package/audit/Config.in
@@ -9,6 +9,7 @@ config BR2_PACKAGE_AUDIT
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS
+ depends on !BR2_TOOLCHAIN_USES_MUSL
help
The audit package contains the user space utilities for
storing and searching the audit records generated by
@@ -18,6 +19,7 @@ config BR2_PACKAGE_AUDIT
http://people.redhat.com/sgrubb/audit/
-comment "audit needs a toolchain w/ threads, dynamic library"
- depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
+comment "audit needs a uClibc or (e)glibc toolchain w/ threads, dynamic library"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
+ || BR2_TOOLCHAIN_USES_MUSL
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS