package/davfs2: needs glibc

davfs2 unconditionally uses fstab.h since
https://git.savannah.nongnu.org/cgit/davfs2.git/commit/?id=6e2053cd7f44b0ca58af09905c044c178df34497
resulting in the following build failure since bump to version 1.7.0 in
commit 76423bd3a6:

mount_davfs.c:78:10: fatal error: fstab.h: No such file or directory
   78 | #include <fstab.h>
      |          ^~~~~~~~~

Fixes:
 - http://autobuild.buildroot.org/results/793c71e4f731a18e203d6eaa3ac8b6e2a9620c27

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Fabrice Fontaine 2022-12-12 18:26:10 +01:00 committed by Peter Korsgaard
parent d4c41ac00c
commit af9454f8c1

View File

@ -1,10 +1,10 @@
comment "davfs2 needs a glibc or uClibc toolchain"
comment "davfs2 needs a glibc toolchain"
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_USES_MUSL
depends on !BR2_TOOLCHAIN_USES_GLIBC
config BR2_PACKAGE_DAVFS2
bool "davfs2"
depends on !BR2_TOOLCHAIN_USES_MUSL # error.h
depends on BR2_TOOLCHAIN_USES_GLIBC # fstab.h
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_NEON
select BR2_PACKAGE_NEON_XML