Fix check for jpeg_mem_ to work with libjpeg-turbo

This commit is contained in:
robo9k 2014-01-27 23:41:51 +01:00
parent cc9072d098
commit 1611188ef7
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include <jpeglib.h> #include <jpeglib.h>
#ifndef USE_INTERNAL_JPEG #ifndef USE_INTERNAL_JPEG
# if JPEG_LIB_VERSION < 80 # if JPEG_LIB_VERSION < 80 && !defined(MEM_SRCDST_SUPPORTED)
# error Need system libjpeg >= 80 # error Need system libjpeg >= 80 or jpeg_mem_ support
# endif # endif
#endif #endif