diff options
author | Alexander Bokovoy <ab@samba.org> | 2005-08-22 16:01:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:20 -0500 |
commit | 20f7f49d7fa96969a62cdb570ac048027db14787 (patch) | |
tree | cb2b1aa5798f5671e0ed9a30d271d53b116e99a1 | |
parent | 55e746ad560d4406821bc2d721cbb929b79a7a0a (diff) | |
download | samba-20f7f49d7fa96969a62cdb570ac048027db14787.tar.gz samba-20f7f49d7fa96969a62cdb570ac048027db14787.tar.bz2 samba-20f7f49d7fa96969a62cdb570ac048027db14787.zip |
r9478: Fix NTVFS POSIX module to work with EA and blkid after build system changes
(This used to be commit 4b89d7c7296dd7abd2d8bcd3f7b702de7314d9ff)
-rw-r--r-- | source4/ntvfs/posix/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntvfs/posix/config.m4 b/source4/ntvfs/posix/config.m4 index 75ab531375..7cc4f8e3df 100644 --- a/source4/ntvfs/posix/config.m4 +++ b/source4/ntvfs/posix/config.m4 @@ -28,7 +28,7 @@ AC_CHECK_HEADERS(sys/attributes.h attr/xattr.h sys/xattr.h) AC_SEARCH_LIBS_EXT(flistxattr, [attr], XATTR_LIBS) AC_CHECK_FUNC_EXT(flistxattr, $XATTR_LIBS) SMB_EXT_LIB(XATTR,[${XATTR_LIBS}],[${XATTR_CFLAGS}],[${XATTR_CPPFLAGS}],[${XATTR_LDFLAGS}]) -if test x"$ac_cv_func_flistxattr" = x"yes"; then +if test x"$ac_cv_func_ext_flistxattr" = x"yes"; then AC_DEFINE(HAVE_XATTR_SUPPORT,1,[Whether we have xattr support]) fi @@ -36,6 +36,6 @@ AC_CHECK_HEADERS(blkid/blkid.h) AC_SEARCH_LIBS_EXT(blkid_get_cache, [blkid], BLKID_LIBS) AC_CHECK_FUNC_EXT(blkid_get_cache, $BLKID_LIBS) SMB_EXT_LIB(BLKID,[${BLKID_LIBS}],[${BLKID_CFLAGS}],[${BLKID_CPPFLAGS}],[${BLKID_LDFLAGS}]) -if test x"$ac_cv_func_blkid_get_cache" = x"yes"; then +if test x"$ac_cv_func_ext_blkid_get_cache" = x"yes"; then AC_DEFINE(HAVE_LIBBLKID,1,[Whether we have blkid support (e2fsprogs)]) fi |