This license applies to the libjpeg API library and associated programs
(any code inherited from libjpeg, and any modifications to that code.)
- - The Modified (3-clause) BSD License, which is listed in
- [turbojpeg.c](turbojpeg.c)
+ - The Modified (3-clause) BSD License, which is listed below
- This license covers the TurboJPEG API library and associated programs.
+ This license covers the TurboJPEG API library and associated programs, as
+ well as the build system.
- - The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc)
+ - The zlib License, which is listed below
This license is a subset of the other two, and it covers the libjpeg-turbo
SIMD extensions.
/* libjpeg-turbo build number */
-#undef BUILD
+#define BUILD "@BUILD@"
+ /* Compiler's inline keyword */
+ #undef inline
+
/* How to obtain function inlining. */
-#undef INLINE
+#define INLINE @INLINE@
/* Define to the full name of this package. */
-#undef PACKAGE_NAME
+#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
/* Version number of package */
-#undef VERSION
+#define VERSION "@VERSION@"
+
+#ifndef _WIN32
/* The size of `size_t', as computed by sizeof. */
-#undef SIZEOF_SIZE_T
+#define SIZEOF_SIZE_T @SIZE_T@
+
+#endif