summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2023-09-05 15:26:40 -0400
committerDonald Sharp <sharpd@nvidia.com>2023-09-05 15:26:40 -0400
commita95b8faadfa7897c09fc2566ca9dab0f2e8846c9 (patch)
tree99f846b843e7e4302d11d4fc5f9116758c464c23
parent92515dce6466f04c6e56a9d513dec6d71313db13 (diff)
*: Remove unused configure option
The `-disable-rr-semantics` or `--enable-rr-senamtics` configure option is never used. Let's just remove it. Signed-off-by: Donald Sharp <sharpd@nvidia.com>
-rw-r--r--configure.ac6
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index cea7571fe0..97f9e6a826 100644
--- a/configure.ac
+++ b/configure.ac
@@ -737,8 +737,6 @@ AC_ARG_ENABLE([cumulus],
AS_HELP_STRING([--enable-cumulus], [enable Cumulus Switch Special Extensions]))
AC_ARG_ENABLE([datacenter],
AS_HELP_STRING([--enable-datacenter], [enable Compilation for Data Center Extensions]))
-AC_ARG_ENABLE([rr-semantics],
- AS_HELP_STRING([--disable-rr-semantics], [disable the v6 Route Replace semantics]))
AC_ARG_ENABLE([protobuf],
AS_HELP_STRING([--enable-protobuf], [Enable experimental protobuf support]))
AC_ARG_ENABLE([oldvpn_commands],
@@ -828,10 +826,6 @@ case "${enable_cpu_time}" in
;;
esac
-if test "$enable_rr_semantics" != "no" ; then
- AC_DEFINE([HAVE_V6_RR_SEMANTICS], [1], [Compile in v6 Route Replacement Semantics])
-fi
-
if test "$enable_datacenter" = "yes" ; then
AC_DEFINE([HAVE_DATACENTER], [1], [Compile extensions for a DataCenter])
DFLT_NAME="datacenter"