From 2287f0aa177b0c1158047010c4846fadf5283537 Mon Sep 17 00:00:00 2001 From: ruven Date: Thu, 13 Jul 2023 16:40:42 +0200 Subject: [PATCH] Added missing spaces to configure.ac test for Kakadu, which was causing false positive in certain conditions --- ChangeLog | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b1afd3fc..48e86fbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +13/07/2023: + - Added missing spaces to configure.ac test for Kakadu, which was causing false positive in certain conditions + + 19/06/2023: - Harmonized iipsrv identity string between JPEG and PNG. - Added ability to choose a particular page or slice in an image stack when using IIIF by using diff --git a/configure.ac b/configure.ac index 83d2ee1d..cd16ac97 100644 --- a/configure.ac +++ b/configure.ac @@ -260,7 +260,7 @@ if test -n "$kakadu_path"; then AC_MSG_RESULT([configure: Found Kakadu sources. Will compile JPEG2000 support]); KAKADU=true;, AC_MSG_RESULT([configure: No Kakadu JPEG2000 Sources Found]); KAKADU=false ) - AM_CONDITIONAL([ENABLE_KAKADU],[test x$KAKADU=xtrue]) + AM_CONDITIONAL([ENABLE_KAKADU],[test x$KAKADU = xtrue]) if test "x${KAKADU}" = xtrue; then AC_DEFINE(HAVE_KAKADU)