bug-tar
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-tar] [PATCH 1/2] Port ACL configuration to Solaris 10.


From: Paul Eggert
Subject: [Bug-tar] [PATCH 1/2] Port ACL configuration to Solaris 10.
Date: Sat, 22 Dec 2012 13:35:37 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0

* configure.ac (with_posix_acls): Fix misspellings.
Stop checking at the first failure, to speed up 'configure'.
---
 configure.ac | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/configure.ac b/configure.ac
index 35edb08..2310600 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,13 +78,12 @@ AC_ARG_WITH([posix-acls],
                    [do not use POSIX.1e access control lists]),
     [with_posix_acls=no])
 if test "x$with_posix_acls" != "xno"; then
-  AC_CHECK_HEADERS(sys/acl.h,, [with_posix_acl=no])
-  AC_SEARCH_LIBS([acl_get_file],  [acl pacl],, [with_posix_acl=no])
-  AC_SEARCH_LIBS([acl_get_fd],    [acl pacl],, [with_posix_acl=no])
-  AC_SEARCH_LIBS([acl_set_file],  [acl pacl],, [with_posix_acl=no])
-  AC_SEARCH_LIBS([acl_set_fd],    [acl pacl],, [with_posix_acl=no])
-  AC_SEARCH_LIBS([acl_to_text],   [acl pacl],, [with_posix_acl=no])
-  AC_SEARCH_LIBS([acl_from_text], [acl pacl],, [with_posix_acl=no])
+  AC_CHECK_HEADERS(sys/acl.h,, [with_posix_acls=no])
+  for tar_acl_func in acl_get_file acl_get_fd acl_set_file acl_set_fd \
+                     acl_to_text acl_from_text; do \
+    test "x$with_posix_acls" = xno && break
+    AC_SEARCH_LIBS([$tar_acl_func], [acl pacl], [], [with_posix_acls=no])
+  done
   if test "x$with_posix_acls" != xno; then
     AC_DEFINE(HAVE_POSIX_ACLS,,[Define when we have working POSIX acls])
   fi
--
1.7.11.7




reply via email to

[Prev in Thread] Current Thread [Next in Thread]