if(WITH_ARITH_ENC)
set(C_ARITH_CODING_SUPPORTED 1)
- message(STATUS "Arithmetic encoding enabled")
+ message(STATUS "Arithmetic encoding support enabled")
else()
- message(STATUS "Arithmetic encoding disabled")
+ message(STATUS "Arithmetic encoding support disabled")
endif()
if(WITH_ARITH_DEC)
set(D_ARITH_CODING_SUPPORTED 1)
- message(STATUS "Arithmetic decoding enabled")
+ message(STATUS "Arithmetic decoding support enabled")
else()
- message(STATUS "Arithmetic decoding disabled")
+ message(STATUS "Arithmetic decoding support disabled")
endif()
set(JPEG_LIB_VERSION 62)
AC_SUBST(VERSION_SCRIPT_FLAG)
AC_SUBST(ANON_VERSION_SCRIPT_FLAG)
-AC_MSG_CHECKING([whether to use arithmetic encoding])
+AC_MSG_CHECKING([whether to include arithmetic encoding support])
AC_ARG_WITH([arith-enc],
AC_HELP_STRING([--without-arith-enc], [Omit arithmetic encoding support]))
if test "x$with_arith_enc" = "xno"; then
fi
AM_CONDITIONAL([WITH_ARITH_ENC], [test "x$with_arith_enc" != "xno"])
-AC_MSG_CHECKING([whether to use arithmetic decoding])
+AC_MSG_CHECKING([whether to include arithmetic decoding support])
AC_ARG_WITH([arith-dec],
AC_HELP_STRING([--without-arith-dec], [Omit arithmetic decoding support]))
if test "x$with_arith_dec" = "xno"; then