libjpeg-turbo: disable thread local storage usage introduced in f579cc11b3, this should fix crashing in XP/2003.

This commit is contained in:
roytam1 2024-10-12 20:20:45 +08:00
commit 06fe8456f7

View file

@ -10,7 +10,7 @@
/* How to obtain thread-local storage */
#if defined(_MSC_VER)
#define THREAD_LOCAL __declspec(thread)
#define THREAD_LOCAL
#else
#define THREAD_LOCAL __thread
#endif