bloodrun-editor/libjpeg-turbo/jconfigint.h
serge_shubin 46ebf18234 Add libjpeg-turbo source dependency
Required by q3map2 for JPEG texture loading. Previously referenced from
an external engine path that may not be present.
2026-04-03 13:52:15 +08:00

13 lines
278 B
C

#define VERSION "1.5.1"
#define BUILD "20161223"
#define PACKAGE_NAME "libjpeg-turbo"
#ifndef INLINE
#if defined(__GNUC__)
#define INLINE inline __attribute__((always_inline))
#elif defined(_MSC_VER)
#define INLINE __forceinline
#else
#define INLINE
#endif
#endif