diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-01-22 18:48:44 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-01-22 18:48:44 -0800 |
commit | 51fb39ec639a79f3fdcc378f5d99b0703a57e317 (patch) | |
tree | d5b16d0631a9242bab6366045377e551af5839cf /m4 | |
parent | d856c4a9244babf113b18d146778cc6a15ac5b8a (diff) | |
download | emacs-51fb39ec639a79f3fdcc378f5d99b0703a57e317.tar.gz |
Merge from gnulib.
This incorporates:
2014-01-22 qacl: check for fchmod
* m4/acl.m4: Update from gnulib.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/acl.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/acl.m4 b/m4/acl.m4 index df8290e5deb..f02f69d22ac 100644 --- a/m4/acl.m4 +++ b/m4/acl.m4 @@ -1,5 +1,5 @@ # acl.m4 - check for access control list (ACL) primitives -# serial 16 +# serial 17 # Copyright (C) 2002, 2004-2014 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation @@ -14,6 +14,7 @@ AC_DEFUN([gl_FUNC_ACL], AS_HELP_STRING([--disable-acl], [do not support ACLs]), , [enable_acl=auto]) + AC_CHECK_FUNCS_ONCE([fchmod]) LIB_ACL= use_acl=0 if test "x$enable_acl" != "xno"; then |