summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 556f94627e28..12d950bf8e89 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7135,7 +7135,7 @@ if test "$with_system_jpeg" = "yes"; then
[AC_MSG_ERROR(jpeg.h not found. install libjpeg)], [])
AC_CHECK_LIB(jpeg, jpeg_resync_to_restart, [ JPEG3RDLIB=-ljpeg ],
[AC_MSG_CHECKING(jpeg library not found or fuctional)], [])
- AC_MSG_CHECKING([[libjpeg version is 7 or greater]])
+ AC_MSG_CHECKING([[libjpeg supports JERR_BAD_CROP_SPEC (jpeg-7 API)]])
AC_COMPILE_IFELSE([ AC_LANG_SOURCE(
[[
#include <stdio.h>
@@ -7144,7 +7144,7 @@ int main(int c, char**v) { printf("%d\n", JERR_BAD_CROP_SPEC); return 0; }
]]) ],
[AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)
- AC_MSG_ERROR(jpeg library version >= 7 required)
+ AC_MSG_ERROR(jpeg library version >= 7 or jpeg-turbo version >= 1.1 required)
])
libo_MINGW_CHECK_DLL([libjpeg])
else