Fix SIZEOF_SIZE_T in jpeg for RaspberryPi

This commit is contained in:
Patrick Gutlich
2023-01-14 12:33:29 +01:00
parent 391a266cd4
commit 82e6e9b779

View File

@@ -23,7 +23,11 @@
#define VERSION "2.0.7"
/* The size of `size_t', as computed by sizeof. */
#if defined(RASPBERRYPI)
#define SIZEOF_SIZE_T 4
#else
#define SIZEOF_SIZE_T 8
#endif
/* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
#ifndef HX_WINDOWS