From: Greg Troxel Date: Thu, 24 Mar 2011 14:19:43 +0000 (-0400) Subject: build: treat opaque-lsa default correctly for ospfapi X-Git-Tag: frr-2.0-rc1~2076^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=0d51c7ef830c3930bb0d7207d93f26bcb8cee455;p=mirror%2Ffrr.git 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. --- diff --git a/configure.ac b/configure.ac index 27d26ef9c1..b981d5b1a0 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)