Avoid the need for AC_LIBSOURCES in m4 macros.
[gnulib.git] / m4 / acl.m4
1 # acl.m4 - check for access control list (ACL) primitives
2
3 # Copyright (C) 2002, 2004, 2005, 2006 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.
9
10 AC_DEFUN([AC_FUNC_ACL],
11 [
12   AC_LIBOBJ([acl])
13
14   dnl Prerequisites of lib/acl.c.
15   AC_CHECK_HEADERS(sys/acl.h)
16   if test "$ac_cv_header_sys_acl_h" = yes; then
17     use_acl=1
18   else
19     use_acl=0
20   fi
21   AC_DEFINE_UNQUOTED(USE_ACL, $use_acl,
22                      [Define if you want access control list support.])
23   AC_CHECK_FUNCS(acl)
24   ac_save_LIBS="$LIBS"
25   AC_SEARCH_LIBS(acl_get_file, acl,
26                  [test "$ac_cv_search_acl_get_file" = "none required" ||
27                   LIB_ACL=$ac_cv_search_acl_get_file])
28   AC_SUBST(LIB_ACL)
29   AC_CHECK_HEADERS(acl/libacl.h)
30   AC_CHECK_FUNCS(acl_get_file acl_get_fd acl_set_file acl_set_fd \
31                  acl_free acl_from_mode acl_from_text acl_to_text \
32                  acl_delete_def_file acl_entries acl_extended_file)
33   LIBS="$ac_save_LIBS"
34 ])