Required by q3map2 for JPEG texture loading. Previously referenced from an external engine path that may not be present.
13 lines
278 B
C
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
|