From: Wayne Davison Date: Wed, 2 Sep 2015 19:20:50 +0000 (-0700) Subject: Add support for netbsd in xattrs case. X-Git-Tag: v3.1.2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1983198097f57cb9c2eb44ae51cbf8c2cabccbe4;p=thirdparty%2Frsync.git Add support for netbsd in xattrs case. Closes bug-suggestion 11484. --- diff --git a/configure.ac b/configure.ac index 3aca2a10..0478ba88 100644 --- a/configure.ac +++ b/configure.ac @@ -1022,9 +1022,9 @@ if test x"$enable_xattr_support" = x"no"; then AC_MSG_RESULT(no) else case "$host_os" in - *linux*) + *linux*|*netbsd*) AC_MSG_RESULT(Using Linux xattrs) - AC_DEFINE(HAVE_LINUX_XATTRS, 1, [True if you have Linux xattrs]) + AC_DEFINE(HAVE_LINUX_XATTRS, 1, [True if you have Linux xattrs (or equivalent)]) AC_DEFINE(SUPPORT_XATTRS, 1) AC_DEFINE(NO_SYMLINK_USER_XATTRS, 1, [True if symlinks do not support user xattrs]) AC_CHECK_LIB(attr,getxattr)