aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-06-16 13:04:50 +0200
committerMartin Willi <martin@strongswan.org>2009-06-16 13:05:43 +0200
commit0c013ff3456ad725cccd91bbda38e0cf365c09b0 (patch)
tree16959e527024cc9ca4504ae44f550033f69e0727 /configure.in
parentb32af120518dce52ca552db3e99bf314f5b3346e (diff)
downloadstrongswan-0c013ff3456ad725cccd91bbda38e0cf365c09b0.tar.bz2
strongswan-0c013ff3456ad725cccd91bbda38e0cf365c09b0.tar.xz
load hmac/xcbc plugins after hash/crypter plugins to pass crypto tests
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in14
1 files 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