neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 248305cf377de6710daa89a92eb8605fa5dcbb1f
parent 386bc23e4378f3c161efc924de49a21b2b2c305f
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sun,  1 Oct 2023 06:08:47 +0800

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>
Diffstat:
Msrc/nvim/os/fs.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git 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"