From 946f15db8b25311fd3466507df82847f990d47ca Mon Sep 17 00:00:00 2001 From: Gina Peter Banyard Date: Tue, 14 May 2024 15:09:33 +0100 Subject: [PATCH] Use BIGLINES options if available --- configure.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.php b/configure.php index e8ff9edba..492841fd8 100755 --- a/configure.php +++ b/configure.php @@ -673,7 +673,8 @@ function getFileModificationHistory(): array { } $compact = defined('LIBXML_COMPACT') ? LIBXML_COMPACT : 0; -$LIBXML_OPTS = LIBXML_NOENT | $compact; +$big_lines = defined('LIBXML_BIGLINES') ? LIBXML_BIGLINES : 0; +$LIBXML_OPTS = LIBXML_NOENT | $big_lines | $compact; if ($ac['VERSION_FILES'] === 'yes') { $dom = new DOMDocument;