Home | History | Annotate | Download | only in libjpeg-turbo
      1 /* jconfigint.h.  Customized for android on the basis of jconfigint.h.in. */
      2 
      3 #ifndef __JCONFIGINT_H__
      4 #define __JCONFIGINT_H__
      5 
      6 /* libjpeg-turbo build number */
      7 #define BUILD ""
      8 
      9 /* How to obtain function inlining. */
     10 #ifndef INLINE
     11   #ifndef TURBO_FOR_WINDOWS
     12     #define INLINE inline __attribute__((always_inline))
     13   #else
     14     #if defined(__GNUC__)
     15       #define INLINE inline __attribute__((always_inline))
     16     #elif defined(_MSC_VER)
     17       #define INLINE __forceinline
     18     #else
     19       #define INLINE
     20     #endif
     21   #endif
     22 #endif
     23 
     24 /* Define to the full name of this package. */
     25 #define PACKAGE_NAME "libjpeg-turbo"
     26 
     27 /* Version number of package */
     28 #define VERSION "1.5.1"
     29 
     30 /* The size of `size_t', as reported by the compiler through the
     31  * builtin macro __SIZEOF_SIZE_T__. If the compiler does not
     32  * report __SIZEOF_SIZE_T__ add a custom rule for the compiler
     33  * here. */
     34 #ifdef __SIZEOF_SIZE_T__
     35 #define SIZEOF_SIZE_T __SIZEOF_SIZE_T__
     36 #else
     37 #error cannot determine the size of size_t
     38 #endif
     39 
     40 #endif // __JCONFIGINT_H__
     41