diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-01-02 13:42:23 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2018-01-02 22:41:22 +0100 |
commit | 3f8a3826bb4ccb57dbed31bd435da2cf3d567e87 (patch) | |
tree | 02f4d7f15baf041c4d7dd1322f6c4b743c348d92 | |
parent | 28d57106b87ef97480374925e5f44dc541eba381 (diff) | |
download | buildroot-3f8a3826bb4ccb57dbed31bd435da2cf3d567e87.tar.gz buildroot-3f8a3826bb4ccb57dbed31bd435da2cf3d567e87.zip |
nilfs-utils: needs threads support
nilfs-utils uses the sem_* family of functions from the realtime
extension. Technically this is not part of pthreads. But in uClibc
enabling threads enables also UCLIBC_HAS_REALTIME.
Fixes:
http://autobuild.buildroot.net/results/c5d/c5d93b6ab5b260fe5db46298b956a9ae765c828a/
http://autobuild.buildroot.net/results/9d6/9d6a248f9acbb58b6c2893de58978c6013332415/
Cc: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/nilfs-utils/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/nilfs-utils/Config.in b/package/nilfs-utils/Config.in index 2763af54fd..0c6b7a0ce8 100644 --- a/package/nilfs-utils/Config.in +++ b/package/nilfs-utils/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_NILFS_UTILS bool "nilfs-utils" + depends on BR2_TOOLCHAIN_HAS_THREADS # sem_open() depends on BR2_USE_MMU # util-linux libmount, libblkid select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_UTIL_LINUX_LIBBLKID @@ -9,3 +10,6 @@ config BR2_PACKAGE_NILFS_UTILS Tools for creating and managing NILFS2 filesystems. https://github.com/nilfs-dev/nilfs-utils + +comment "nilfs-utils needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS |