summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2023-01-13 19:32:47 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2023-01-13 20:03:54 -0800
commit99120491730c5839a5ba15ded187d481af1e71a7 (patch)
tree8473e9b735fdc25d01fa5dc65ae2884250b23d89 /configure.ac
parentdce42f556177e4e0f15daccb3c2f27a47f2beebb (diff)
downloademacs-99120491730c5839a5ba15ded187d481af1e71a7.tar.gz
Update from Gnulib by running admin/merge-gnulib
This adds a new file m4/xattr.m4 from Gnulib, for NFS v4 attribute copying. Also, do these changes by hand: * configure.ac: Mention $LIB_XATTR" in ACL summary. * src/Makefile.in (QCOPY_ACL_LIB): New macro. (LIBES): Use it.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8c11414fe0b..d7aec4414e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6553,7 +6553,9 @@ if test "${HAVE_GTK}" = "yes"; then
fi
if test $USE_ACL -ne 0; then
- ACL_SUMMARY="yes $LIB_ACL"
+ ACL_SUMMARY="yes"
+ test "$LIB_ACL" && ACL_SUMMARY="$ACL_SUMMARY $LIB_ACL"
+ test "$LIB_XATTR" && ACL_SUMMARY="$ACL_SUMMARY $LIB_XATTR"
else
ACL_SUMMARY=no
fi