From 0c013ff3456ad725cccd91bbda38e0cf365c09b0 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 16 Jun 2009 13:04:50 +0200 Subject: [PATCH] load hmac/xcbc plugins after hash/crypter plugins to pass crypto tests --- configure.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 392ef1a91..4c366b779 100644 --- a/configure.in +++ b/configure.in @@ -1104,13 +1104,6 @@ if test x$pubkey = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" pubkey" pluto_plugins=${pluto_plugins}" pubkey" fi -if test x$xcbc = xtrue; then - libstrongswan_plugins=${libstrongswan_plugins}" xcbc" -fi -if test x$hmac = xtrue; then - libstrongswan_plugins=${libstrongswan_plugins}" hmac" - pluto_plugins=${pluto_plugins}" hmac" -fi if test x$mysql = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" mysql" fi @@ -1128,6 +1121,13 @@ if test x$gcrypt = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" gcrypt" pluto_plugins=${pluto_plugins}" gcrypt" fi +if test x$xcbc = xtrue; then + libstrongswan_plugins=${libstrongswan_plugins}" xcbc" +fi +if test x$hmac = xtrue; then + libstrongswan_plugins=${libstrongswan_plugins}" hmac" + pluto_plugins=${pluto_plugins}" hmac" +fi if test x$agent = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" agent" fi