Displaying 1 result from an estimated 1 matches for "have_unixware_acl".
Did you mean:
have_unixware_acls
2018 Oct 18
0
Cygwin build fails because headers no longer default to Solaris ACL
...E statement improperly short-circuits the logic.
I have confirmed that Rsync builds using POSIX ACLs but haven't tested said functionality.
diff --git a/configure.ac b/configure.ac
index 45a96637..4f68e98a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -979,7 +979,7 @@ else
AC_DEFINE(HAVE_UNIXWARE_ACLS, 1, [true if you have UnixWare ACLs])
AC_DEFINE(SUPPORT_ACLS, 1, [Define to 1 to add support for ACLs])
;;
- solaris*|*cygwin*)
+ solaris*)
AC_MSG_RESULT(Using solaris ACLs)
AC_DEFINE(HAVE_SOLARIS_ACLS, 1, [true if you have solaris ACLs])
AC_DEFINE(SUP...