From 0d51c7ef830c3930bb0d7207d93f26bcb8cee455 Mon Sep 17 00:00:00 2001 From: Greg Troxel Date: Thu, 24 Mar 2011 10:19:43 -0400 Subject: 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') 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) -- cgit v1.2.1