This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository legacy-imlib2.

View the commit online.

commit 57403f2ec3e629d16bd0f939ff38f75714128c5e
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Sun Sep 3 16:15:22 2023 +0200

    test_save: Fix for jxl loader on ix86
    
    libjxl apparently behaves differently for ix86 and x86_64.
---
 test/test_save.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/test/test_save.cpp b/test/test_save.cpp
index ab4375e..c984a05 100644
--- a/test/test_save.cpp
+++ b/test/test_save.cpp
@@ -27,7 +27,11 @@ static const test_rec_t exts[] = {
 // { "id3",  { 0, 0 } },
 // { "j2k",  { 0, 0 } },
    { "jpeg", { 2458451111, 3483232328 } },
+#ifdef __i386__
+   { "jxl",  { 2681286418, 3923017710 } },
+#else
    { "jxl",  { 2681286418,  774897965 } },
+#endif
 // { "lbm",  { 0, 0 } },
 // { "lzma", { 0, 0 } },
    { "png",  { 1153555547, 2937827957 } },

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to