use only native crypto-API for mingw* hosts
authorRoumen Petrov <bugtrack@roumenpetrov.info>
Sun, 27 May 2012 13:53:51 +0000 (16:53 +0300)
committerDaniel Veillard <veillard@redhat.com>
Thu, 16 Aug 2012 08:33:32 +0000 (16:33 +0800)
configure.in

index 3cf2ba5..e5e7c81 100644 (file)
@@ -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)