From 574f6594ce48893ac5da56ecbe328450324ecdfc Mon Sep 17 00:00:00 2001 From: Martin Matuska Date: Thu, 3 Aug 2023 00:31:38 +0200 Subject: [PATCH] build: add missing HAVE_STRUCT_STATFS to build/cmake/config.h.in Fixes #1937 --- build/cmake/config.h.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in index 08a3196f2..71d54a4ce 100644 --- a/build/cmake/config.h.in +++ b/build/cmake/config.h.in @@ -1032,6 +1032,12 @@ typedef uint64_t uintmax_t; /* Define to 1 if you have the `strrchr' function. */ #cmakedefine HAVE_STRRCHR 1 +/* Define to 1 if the system has the type `struct statfs'. */ +#cmakedefine HAVE_STRUCT_STATFS 1 + +/* Define to 1 if `f_iosize' is a member of `struct statfs'. */ +#cmakedefine HAVE_STRUCT_STATFS_F_IOSIZE 1 + /* Define to 1 if `f_namemax' is a member of `struct statfs'. */ #cmakedefine HAVE_STRUCT_STATFS_F_NAMEMAX 1 -- 2.47.2