X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7f367bb1b4348ba1edb863ee13f8281471785e09..05a652d0b712af225d6cb72aa31beafaff601151:/configure.in diff --git a/configure.in b/configure.in index bc7d4a7f..fcde0cab 100644 --- a/configure.in +++ b/configure.in @@ -196,7 +196,7 @@ AC_ARG_ENABLE(ipv6, [don't even try to use IPv6])) if test x"$enable_ipv6" != x"no"; then AC_MSG_CHECKING([ipv6 stack type]) - for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do + for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta; do case $i in inria) # http://www.kame.net/ @@ -240,6 +240,16 @@ AC_DEFINE(INET6, 1, [true if you have IPv6])]) CFLAGS="-I/usr/inet6/include $CFLAGS" fi ;; + solaris) + # http://www.sun.com + AC_EGREP_CPP(yes, [ +#include +#ifdef __sun +yes +#endif], + [ipv6type=$i; + AC_DEFINE(INET6, 1, [true if you have IPv6])]) + ;; toshiba) AC_EGREP_CPP(yes, [ #include @@ -956,6 +966,12 @@ else AC_DEFINE(HAVE_FREEBSD_XATTRS, 1, [True if you have FreeBSD xattrs]) AC_DEFINE(SUPPORT_XATTRS, 1) ;; + solaris*) + AC_MSG_RESULT(Using Solaris xattrs) + AC_DEFINE(HAVE_SOLARIS_XATTRS, 1, [True if you have Solaris xattrs]) + AC_DEFINE(SUPPORT_XATTRS, 1) + AC_DEFINE(NO_SYMLINK_XATTRS, 1, [True if symlinks don't support xattrs]) + ;; *) if test x"$enable_xattr_support" = x"yes"; then AC_MSG_ERROR(Failed to find extended attribute support)