Skip to content

Commit

Permalink
Added missing spaces to configure.ac test for Kakadu, which was causi…
Browse files Browse the repository at this point in the history
…ng false positive in certain conditions
  • Loading branch information
ruven committed Jul 13, 2023
1 parent d978bfd commit 2287f0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2287f0a

Please sign in to comment.