diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-06-27 12:14:16 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-06-27 12:15:09 +0200 |
commit | bd858af85157b87ab7e6ac64e2101460d9d02941 (patch) | |
tree | 14d2d4eb6bd52b60a83b974475b69dded0354d13 /src | |
parent | 271377905d9ff7e0a69b38be46f88b2220977535 (diff) | |
download | strongswan-bd858af85157b87ab7e6ac64e2101460d9d02941.tar.bz2 strongswan-bd858af85157b87ab7e6ac64e2101460d9d02941.tar.xz |
libcharon also requires kernel interfaces and a socket implementation
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/daemon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libcharon/daemon.c b/src/libcharon/daemon.c index 525c987ab..f64c70b27 100644 --- a/src/libcharon/daemon.c +++ b/src/libcharon/daemon.c @@ -218,6 +218,9 @@ METHOD(daemon_t, initialize, bool, PLUGIN_DEPENDS(HASHER, HASH_SHA1), PLUGIN_DEPENDS(RNG, RNG_STRONG), PLUGIN_DEPENDS(NONCE_GEN), + PLUGIN_DEPENDS(CUSTOM, "kernel-ipsec"), + PLUGIN_DEPENDS(CUSTOM, "kernel-net"), + PLUGIN_DEPENDS(CUSTOM, "socket"), }; lib->plugins->add_static_features(lib->plugins, charon->name, features, countof(features), TRUE); |