Displaying 1 result from an estimated 1 matches for "45a96637".
Did you mean:
456637
2018 Oct 18
0
Cygwin build fails because headers no longer default to Solaris ACL
...include cygwin/acl.h from sys/acls.h which is required for Solaris ACL data structures to work. So the CASE 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_RESUL...