summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJakub Urbańczyk <xthaid@gmail.com>2020-08-25 17:31:07 +0200
committerJakub Urbańczyk <xthaid@gmail.com>2020-08-25 17:31:07 +0200
commit4efd721d1e7545f7e2c7440f795cc2b00cc91142 (patch)
tree55cecb60f569e6c738bc965ac149b80b09d822de /configure.ac
parentMerge pull request #6938 from opensourcerouting/bgp-instance-shutdown (diff)
downloadfrr-4efd721d1e7545f7e2c7440f795cc2b00cc91142.tar.xz
frr-4efd721d1e7545f7e2c7440f795cc2b00cc91142.zip
zebra: remove fuzzing stuff
The fuzzing code that is in the master branch is outdated and unused, so it is worth to remove it to improve readablity of the code. All the code related to the fuzzing is in the `fuzz` branch. Signed-off-by: Jakub Urbańczyk <xthaid@gmail.com>
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac12
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac
index 3c65bc91a..ae116ef75 100755
--- a/configure.ac
+++ b/configure.ac
@@ -610,10 +610,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([fuzzing],
- AS_HELP_STRING([--enable-fuzzing], [enable ability to fuzz various parts of FRR]))
-AC_ARG_ENABLE([netlink_fuzzing],
- AS_HELP_STRING([--enable-netlink-fuzzing], [enable ability to fuzz netlink listening socket in zebra]))
AC_ARG_ENABLE([rr-semantics],
AS_HELP_STRING([--disable-rr-semantics], [disable the v6 Route Replace semantics]))
AC_ARG_ENABLE([protobuf],
@@ -718,14 +714,6 @@ else
DFLT_NAME="traditional"
fi
-if test "$enable_fuzzing" = "yes" ; then
- AC_DEFINE([HANDLE_ZAPI_FUZZING], [1], [Compile extensions to use with a fuzzer])
-fi
-
-if test "$enable_netlink_fuzzing" = "yes" ; then
- AC_DEFINE([HANDLE_NETLINK_FUZZING], [1], [Compile extensions to use with a fuzzer for netlink])
-fi
-
if test "$enable_cumulus" = "yes" ; then
AC_DEFINE([HAVE_CUMULUS], [1], [Compile Special Cumulus Code in])
fi