aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-10-01 06:08:47 +0800
committerGitHub <noreply@github.com>2023-10-01 06:08:47 +0800
commit248305cf377de6710daa89a92eb8605fa5dcbb1f (patch)
tree4410c2c83c3851366c2adc17a3465b26285dd0ea
parent386bc23e4378f3c161efc924de49a21b2b2c305f (diff)
downloadrneovim-248305cf377de6710daa89a92eb8605fa5dcbb1f.tar.gz
rneovim-248305cf377de6710daa89a92eb8605fa5dcbb1f.tar.bz2
rneovim-248305cf377de6710daa89a92eb8605fa5dcbb1f.zip
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 <cb@256bit.org>
-rw-r--r--src/nvim/os/fs.c1
1 files changed, 0 insertions, 1 deletions
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 <sys/xattr.h>
-# define XATTR_VAL_LEN 1024
#endif
#include "nvim/ascii.h"