f67f6def65677992f1aa0baec3a7a34f77234c4f
[gnulib.git] / m4 / acl.m4
1 # acl.m4 - check for access control list (ACL) primitives
2
3 # Copyright (C) 2002, 2004-2008 Free Software Foundation, Inc.
4 # This file is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
7
8 # Written by Paul Eggert and Jim Meyering.
9
10 AC_DEFUN([gl_FUNC_ACL],
11 [
12   AC_LIBOBJ([acl])
13   AC_LIBOBJ([file-has-acl])
14
15   AC_ARG_ENABLE([acl],
16     AC_HELP_STRING([--disable-acl], [do not support ACLs]),
17     , [enable_acl=auto])
18
19   LIB_ACL=
20   use_acl=0
21   if test "x$enable_acl" != "xno"; then
22     dnl Prerequisites of lib/acl.c.
23     AC_CHECK_HEADERS(sys/acl.h)
24     if test $ac_cv_header_sys_acl_h = yes; then
25       ac_save_LIBS=$LIBS
26       AC_CHECK_FUNCS([acl])
27       use_acl=1
28       AC_SEARCH_LIBS([acl_trivial], [sec],
29         [test "$ac_cv_search_acl_trivial" = "none required" ||
30          LIB_ACL=$ac_cv_search_acl_trivial
31          AC_CHECK_FUNCS([acl_trivial])],
32         [AC_CHECK_FUNCS([acl_trivial])
33          if test $ac_cv_func_acl_trivial != yes; then
34            AC_SEARCH_LIBS([acl_get_file], [acl],
35              [test "$ac_cv_search_acl_get_file" = "none required" ||
36               LIB_ACL=$ac_cv_search_acl_get_file
37               AC_CHECK_FUNCS(
38                 [acl_get_file acl_get_fd acl_set_file acl_set_fd \
39                  acl_free acl_from_mode acl_from_text \
40                  acl_delete_def_file acl_extended_file])
41               if test $ac_cv_func_acl_get_file = yes; then
42                 # If the acl_get_file bug is detected, disable all ACL support.
43                 gl_ACL_GET_FILE( , [use_acl=0])
44               fi
45               if test $use_acl = 1; then
46                 AC_CHECK_HEADERS([acl/libacl.h])
47                 if test $ac_cv_func_acl_get_file = yes &&
48                    test $ac_cv_func_acl_free = yes; then
49                   AC_REPLACE_FUNCS([acl_entries])
50                 fi
51               else
52                 LIB_ACL=
53               fi])
54          fi])
55       LIBS=$ac_save_LIBS
56     fi
57     if test "x$enable_acl$use_acl" = "xyes0"; then
58       AC_MSG_ERROR([ACLs enabled but support not detected])
59     fi
60   fi
61   AC_SUBST([LIB_ACL])
62   AC_DEFINE_UNQUOTED([USE_ACL], [$use_acl],
63     [Define to nonzero if you want access control list support.])
64
65   # This is for backwards compatibility; remove this by the end of 2007.
66   LIB_ACL_TRIVIAL=
67   AC_SUBST([LIB_ACL_TRIVIAL])
68 ])
69
70 # gl_ACL_GET_FILE(IF-WORKS, IF-NOT)
71 # -------------------------------------
72 # If `acl_get_file' works (does not have a particular bug),
73 # run IF-WORKS, otherwise, IF-NOT.
74 # This tests for a Darwin 8.7.0 bug, whereby acl_get_file returns NULL,
75 # but sets errno = ENOENT for an existing file or directory.
76 AC_DEFUN([gl_ACL_GET_FILE],
77 [
78   AC_CACHE_CHECK([for working acl_get_file], gl_cv_func_working_acl_get_file,
79     [AC_RUN_IFELSE(
80        [AC_LANG_PROGRAM(
81           [[#include <sys/types.h>
82            #include <sys/acl.h>
83            #include <errno.h>
84           ]],
85           [[return !! (!acl_get_file (".", ACL_TYPE_ACCESS)
86                        && errno == ENOENT);]])],
87        [gl_cv_func_working_acl_get_file=yes],
88        [gl_cv_func_working_acl_get_file=no],
89        [gl_cv_func_working_acl_get_file=cross-compiling])])
90
91   AS_IF([test $gl_cv_func_working_acl_get_file = yes], [$1], [$2])
92 ])