[libxslt] use only native crypto-API for mingw* hosts
- From: Daniel Veillard <veillard src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libxslt] use only native crypto-API for mingw* hosts
- Date: Thu, 16 Aug 2012 13:19:31 +0000 (UTC)
commit c5eda69c278119e7a66aa5371cd3521cead79fa1
Author: Roumen Petrov <bugtrack roumenpetrov info>
Date: Sun May 27 16:53:51 2012 +0300
use only native crypto-API for mingw* hosts
configure.in | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
---
diff --git a/configure.in b/configure.in
index 3cf2ba5..e5e7c81 100644
--- a/configure.in
+++ b/configure.in
@@ -380,6 +380,14 @@ if test "$with_crypto" = "no" ; then
LIBGCRYPT_CFLAGS=""
LIBGCRYPT_LIBS=""
else
+case $host in
+ *-mingw*)
+ dnl Use only native crypto-API for mingw* hosts
+ dnl TODO: to implement --with-crypto=foo to allow switch between
+ dnl crypto libraries
+ WITH_CRYPTO=1
+ ;;
+ *)
AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no)
if test "$LIBGCRYPT_CONFIG" != "no" ; then
LIBGCRYPT_VERSION=`$LIBGCRYPT_CONFIG --version`
@@ -400,6 +408,7 @@ else
LIBGCRYPT_LIBS=""
echo 'Crypto extensions will not be available. Install libgcrypt and reconfigure to make available.'
fi
+esac
fi
AC_SUBST(WITH_CRYPTO)
AC_SUBST(LIBGCRYPT_CFLAGS)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]