From 248305cf377de6710daa89a92eb8605fa5dcbb1f Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 1 Oct 2023 06:08:47 +0800 Subject: vim-patch:9.0.1964: xattr support fails to build on MacOS X (#25448) Problem: xattr support fails to build on MacOS X Solution: Disable xattr support for MacOS X MacOS X uses the same headers and functions sys/xattr.h but the function signatures for xattr support are much different, so building fails. So let's for now disable xattr support there. closes: vim/vim#13230 closes: vim/vim#13232 https://github.com/vim/vim/commit/a4dfbfed89e26a766e30cca62c18e710eec81c3f Co-authored-by: Christian Brabandt --- src/nvim/os/fs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 93cc7de040..de7996e51b 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -31,7 +31,6 @@ #ifdef HAVE_XATTR # include -# define XATTR_VAL_LEN 1024 #endif #include "nvim/ascii.h" -- cgit