Disk (Android): fix build

Android does support `statx`, but it requires targeting newer ANDROID_API version to be available
This commit is contained in:
李通洲
2024-04-11 19:49:57 +08:00
parent 4e4efa67e6
commit fb26cb1394
+3 -1
View File
@@ -699,7 +699,9 @@ check_function_exists(wcwidth HAVE_WCWIDTH)
if(NOT HAVE_WCWIDTH)
list(APPEND LIBFASTFETCH_SRC src/3rdparty/mk_wcwidch/wcwidth.c)
endif()
check_function_exists(statx HAVE_STATX)
if(LINUX)
check_function_exists(statx HAVE_STATX)
endif()
if(ENABLE_SYSTEM_YYJSON)
find_package(yyjson)