diff options
author | Greg Troxel <gdt@ir.bbn.com> | 2011-03-24 10:19:43 -0400 |
---|---|---|
committer | Greg Troxel <gdt@ir.bbn.com> | 2011-03-24 10:19:43 -0400 |
commit | 0d51c7ef830c3930bb0d7207d93f26bcb8cee455 (patch) | |
tree | 5e0f8395940b03349c07bcab44b4e6d91d35c22b | |
parent | d876bdf4a84f40ac3f9bec8d5040858b3725db3e (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.
-rwxr-xr-x | configure.ac | 2 |
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) |