Skip to content

Commit

Permalink
Disable OpenSSL probe on Darwin.
Browse files Browse the repository at this point in the history
This avoids a painful deprecation build error when the configure
finds RMD160 in OpenSSL.
We can re-enable this in the production version of libarchive 3.0.0,
since the production versions don't enable -Werror.

SVN-Revision: 3767
  • Loading branch information
kientzle committed Nov 12, 2011
1 parent 8068bcb commit b0f3a5e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.ac
Expand Up @@ -276,6 +276,9 @@ AC_ARG_WITH([nettle],
AS_HELP_STRING([--without-nettle], [Don't build with crypto support from Nettle]))
AC_ARG_WITH([openssl],
AS_HELP_STRING([--without-openssl], [Don't build support for mtree and xar hashes through openssl]))
case "$host_os" in
*darwin* ) with_openssl=no ;;
esac

AC_ARG_WITH([xml2],
AS_HELP_STRING([--without-xml2], [Don't build support for xar through libxml2]))
Expand Down

0 comments on commit b0f3a5e

Please sign in to comment.