kumquat-buildroot/package/davfs2/Config.in
Fabrice Fontaine af9454f8c1 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>
2022-12-18 14:54:28 +01:00

19 lines
615 B
Plaintext

comment "davfs2 needs a glibc toolchain"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_USES_GLIBC
config BR2_PACKAGE_DAVFS2
bool "davfs2"
depends on BR2_TOOLCHAIN_USES_GLIBC # fstab.h
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_NEON
select BR2_PACKAGE_NEON_XML
help
davfs2 is a Linux file system driver that allows to
mount a WebDAV resource. WebDAV is an extension to HTTP/1.1
that allows remote collaborative authoring of Web resources.
To use davfs2 via /etc/fstab, FEATURE_MOUNT_HELPERS
must be selected in busybox configuration.
http://savannah.nongnu.org/projects/davfs2