New GNU xorriso configuration option --enable-dir-rec-size-check

This commit is contained in:
Thomas Schmitt 2025-03-01 16:10:44 +01:00
parent 23f28b97e5
commit 4cc380cc1f
2 changed files with 20 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# configure.ac stems from xorriso/configure_ac.txt and leads to ./configure
# Copyright (c) 2007 - 2024 Thomas Schmitt <scdbackup@gmx.net>
# Copyright (c) 2007 - 2025 Thomas Schmitt <scdbackup@gmx.net>
# Provided under GPL version 2 or later.
AC_INIT([xorriso], [1.5.7], [http://libburnia-project.org])
@ -433,6 +433,24 @@ else
fi
dnl ts C50224
AH_TEMPLATE([Libisofs_dir_rec_size_checK], [Define to enable detailed check of directory size prediction])
AC_ARG_ENABLE(dir-rec-size-check,
[ --enable-dir-rec-size-check Detailed check of directory size prediction, default=no],
, dir_rec_size_check=no)
if test x$enable_dir_rec_size_check = xyes; then
DIR_REC_SIZE_CHECK="-DLibisofs_dir_rec_size_checK"
echo "enabled detailed check of directory size prediction"
else
DIR_REC_SIZE_CHECK=
echo "disabled detailed check of directory size prediction"
fi
if test x$DIR_REC_SIZE_CHECK = x-DLibisofs_dir_rec_size_checK
then
AC_DEFINE([Libisofs_dir_rec_size_checK], [])
fi
AH_TEMPLATE([THREADED_CHECKSUMS],
[Define to use multi-threading in built-in libjte])
AC_ARG_ENABLE(jtethreads,

View File

@ -1 +1 @@
#define Xorriso_timestamP "2024.12.20.154809"
#define Xorriso_timestamP "2025.03.01.150925"