From 5c60fbe9db0005d10d87ba60a981fd41f85f8df5 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 30 Sep 2023 21:19:12 +0800 Subject: vim-patch:9.0.1963: Configure script may not detect xattr Problem: Configure script may not detect xattr correctly Solution: include sys/xattr instead of attr/xattr, make Test_write_with_xattr_support() test xattr feature correctly This also applies to the Smack security feature, so change the include and configure script for it as well. closes: vim/vim#13229 https://github.com/vim/vim/commit/6de4e58cf27a3bb6e81653ca63b77e29d1bb46f2 --- test/old/testdir/test_writefile.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/old/testdir/test_writefile.vim b/test/old/testdir/test_writefile.vim index 62ec901dbf..df993feb62 100644 --- a/test/old/testdir/test_writefile.vim +++ b/test/old/testdir/test_writefile.vim @@ -992,6 +992,7 @@ endfunc func Test_write_with_xattr_support() CheckLinux + CheckFeature xattr CheckExecutable setfattr let contents = ["file with xattrs", "line two"] -- cgit