From: Tobias Brunner Date: Wed, 27 Mar 2013 06:47:53 +0000 (+0100) Subject: Don't set USE_ATTR_SQL when the sql plugin is enabled only X-Git-Tag: 5.0.3~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=613fb0b494b2a36a3a8cb85f68c3c714aa5ea465;p=thirdparty%2Fstrongswan.git Don't set USE_ATTR_SQL when the sql plugin is enabled only --- diff --git a/configure.in b/configure.in index 2e36c99f27..d4c35bee16 100644 --- a/configure.in +++ b/configure.in @@ -1178,7 +1178,7 @@ AM_CONDITIONAL(USE_UNITY, test x$unity = xtrue) # hydra plugins # --------------- AM_CONDITIONAL(USE_ATTR, test x$attr = xtrue) -AM_CONDITIONAL(USE_ATTR_SQL, test x$attr_sql = xtrue -o x$sql = xtrue) +AM_CONDITIONAL(USE_ATTR_SQL, test x$attr_sql = xtrue) AM_CONDITIONAL(USE_KERNEL_KLIPS, test x$kernel_klips = xtrue) AM_CONDITIONAL(USE_KERNEL_NETLINK, test x$kernel_netlink = xtrue) AM_CONDITIONAL(USE_KERNEL_PFKEY, test x$kernel_pfkey = xtrue)