Fix a regression introduced in 1.4.1 that prevented 32-bit and 64-bit libjpeg-turbo RPMs from being installed simultaneously on recent Red Hat/Fedora distributions. This was due to the addition of the SIZEOF_SIZE_T macro in jconfig.h, which allows the Huffman codec to determine the word size at compile time. Since that macro differs between 32-bit and 64-bit builds, this caused a conflict between the i386 and x86_64 RPMs (any differing files, other than executables, are not allowed when 32-bit and 64-bit RPMs are installed simultaneously.) Since the macro is used only internally, it has been moved into jconfigint.h.
15 lines
289 B
C
15 lines
289 B
C
/* libjpeg-turbo build number */
|
|
#undef BUILD
|
|
|
|
/* How to obtain function inlining. */
|
|
#undef INLINE
|
|
|
|
/* Define to the full name of this package. */
|
|
#undef PACKAGE_NAME
|
|
|
|
/* Version number of package */
|
|
#undef VERSION
|
|
|
|
/* The size of `size_t', as computed by sizeof. */
|
|
#undef SIZEOF_SIZE_T
|