From 4cc380cc1fb0d0456b3b3fd280247203e664c162 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 1 Mar 2025 16:10:44 +0100 Subject: [PATCH] New GNU xorriso configuration option --enable-dir-rec-size-check --- xorriso/configure_ac.txt | 20 +++++++++++++++++++- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/xorriso/configure_ac.txt b/xorriso/configure_ac.txt index 574be64c..618626c4 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -1,6 +1,6 @@ # configure.ac stems from xorriso/configure_ac.txt and leads to ./configure -# Copyright (c) 2007 - 2024 Thomas Schmitt +# Copyright (c) 2007 - 2025 Thomas Schmitt # 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, diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 8fbb2314..df198fec 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2024.12.20.154809" +#define Xorriso_timestamP "2025.03.01.150925"