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