q66 pushed a commit to branch master. http://git.enlightenment.org/legacy/imlib2.git/commit/?id=92d3153fee9f915cf2bdbc92a7551e5a83985e81
commit 92d3153fee9f915cf2bdbc92a7551e5a83985e81 Author: Daniel Kolesa <dan...@octaforge.org> Date: Sun Aug 9 21:00:46 2020 +0200 Fix big endian build --- src/modules/loaders/loader_argb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/loaders/loader_argb.c b/src/modules/loaders/loader_argb.c index ec58ca3..b915b7b 100644 --- a/src/modules/loaders/loader_argb.c +++ b/src/modules/loaders/loader_argb.c @@ -7,6 +7,9 @@ load2(ImlibImage * im, int load_data) int w = 0, h = 0, alpha = 0; DATA32 *ptr; int y; +#ifdef WORDS_BIGENDIAN + int l; +#endif rc = LOAD_FAIL; --