From db95baf55ece57a884b9fdf5342348cc4948e26e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Nov 2004 10:02:55 +0000 Subject: r3803: fixed detection of xattr support (This used to be commit b7e4ec4550dd2d15714784e5fb29789be9ca8623) --- source4/ntvfs/posix/config.m4 | 1 + 1 file changed, 1 insertion(+) diff --git a/source4/ntvfs/posix/config.m4 b/source4/ntvfs/posix/config.m4 index d39acbe85e..0fcc948a5b 100644 --- a/source4/ntvfs/posix/config.m4 +++ b/source4/ntvfs/posix/config.m4 @@ -26,6 +26,7 @@ dnl use flistxattr as the key function for having dnl sufficient xattr support for posix xattr backend AC_CHECK_HEADERS(sys/attributes.h attr/xattr.h sys/xattr.h) AC_SEARCH_LIBS(flistxattr, [attr]) +AC_CHECK_FUNCS(flistxattr) if test x"$ac_cv_func_flistxattr" = x"yes"; then AC_DEFINE(HAVE_XATTR_SUPPORT,1,[Whether we have xattr support]) -- cgit