Merge pull request #1620 from gepatto/8.2.0-Dev

Fix SIZEOF_SIZE_T in jpeg for RaspberryPi
This commit is contained in:
player-03
2023-01-14 08:36:43 -05:00
committed by GitHub

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