summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-11-17 10:02:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:55 -0500
commitdb95baf55ece57a884b9fdf5342348cc4948e26e (patch)
tree89342be560d136a14e147bbeb5bf4b650cd2b09a
parentf4e5f3a498bce04312898dfe92104fafc1fc2aa2 (diff)
downloadsamba-db95baf55ece57a884b9fdf5342348cc4948e26e.tar.gz
samba-db95baf55ece57a884b9fdf5342348cc4948e26e.tar.bz2
samba-db95baf55ece57a884b9fdf5342348cc4948e26e.zip
r3803: fixed detection of xattr support
(This used to be commit b7e4ec4550dd2d15714784e5fb29789be9ca8623)
-rw-r--r--source4/ntvfs/posix/config.m41
1 files changed, 1 insertions, 0 deletions
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])