Remove deprecated --disable-archiver configure argument

This commit is contained in:
Tim Wojtulewicz 2025-06-02 10:32:14 -07:00
parent 5e5d943273
commit 60a4aef941

8
configure vendored
View file

@ -327,9 +327,6 @@ while [ $# -ne 0 ]; do
--disable-af-packet)
append_cache_entry DISABLE_AF_PACKET BOOL true
;;
--disable-archiver)
has_disable_archiver=1
;;
--disable-auxtools)
append_cache_entry INSTALL_AUX_TOOLS BOOL false
;;
@ -509,8 +506,3 @@ eval ${cmake} 2>&1
echo "# This is the command used to configure this build" >config.status
echo $command >>config.status
chmod u+x config.status
if [ $has_disable_archiver -eq 1 ]; then
echo
echo "NOTE: The --disable-archiver argument no longer has any effect and will be removed in v7.1. zeek-archiver is now part of zeek-aux, so consider --disable-auxtools instead."
fi