Deprecate --with-binpac/--with-bifcl configure options

This commit is contained in:
Tim Wojtulewicz 2025-06-02 10:31:26 -07:00
parent 60a4aef941
commit 60953e14e7
2 changed files with 42 additions and 42 deletions

18
configure vendored
View file

@ -184,6 +184,8 @@ builddir=build
CMakeCacheEntries=""
display_cmake=0
has_disable_archiver=0
has_with_binpac=0
has_with_bifcl=0
# parse arguments
while [ $# -ne 0 ]; do
@ -368,13 +370,13 @@ while [ $# -ne 0 ]; do
append_cache_entry INSTALL_ZKG BOOL false
;;
--with-bifcl=*)
append_cache_entry BIFCL_EXE_PATH PATH $optarg
has_with_bifcl=1
;;
--with-bind=*)
append_cache_entry BIND_ROOT_DIR PATH $optarg
;;
--with-binpac=*)
append_cache_entry BINPAC_EXE_PATH PATH $optarg
has_with_binpac=1
;;
--with-bison=*)
append_cache_entry BISON_EXECUTABLE PATH $optarg
@ -506,3 +508,15 @@ 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_with_bifcl -eq 1 ]; then
echo
echo "The --with-bifcl option has been deprecated and will be removed in v8.1."
echo "The bundled version of bifcl will always be used."
fi
if [ $has_with_binpac -eq 1 ]; then
echo
echo "The --with-binpac option has been deprecated and will be removed in v8.1."
echo "The bundled version of BinPAC will always be used.\n"
fi