summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGreg Troxel <gdt@ir.bbn.com>2011-03-24 10:19:43 -0400
committerGreg Troxel <gdt@ir.bbn.com>2011-03-24 10:19:43 -0400
commit0d51c7ef830c3930bb0d7207d93f26bcb8cee455 (patch)
tree5e0f8395940b03349c07bcab44b4e6d91d35c22b /configure.ac
parentd876bdf4a84f40ac3f9bec8d5040858b3725db3e (diff)
build: treat opaque-lsa default correctly for ospfapi
In deciding whether to default ospfapi to on or off, use the same rule for opaque-lsa as earlier: != no rather than = yes, so that not having set it implies yes.
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 27d26ef9..b981d5b1 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1200,7 +1200,7 @@ else
fi
OSPFCLIENT=""
-if test "${enable_opaque_lsa}" = "yes"; then
+if test "${enable_opaque_lsa}" != "no"; then
if test "${enable_ospfapi}" != "no";then
AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)