Make arithmetic coding support status messages more clear

git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@315 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
DRC 2011-01-04 21:40:11 +00:00
Родитель 49aedf4231
Коммит 990e28dc96
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -46,16 +46,16 @@ endif()
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)

Просмотреть файл

@ -207,7 +207,7 @@ AM_CONDITIONAL(ANON_VERSION_SCRIPT, test "x$ANON_VERSION_SCRIPT" = "xyes")
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
@ -218,7 +218,7 @@ else
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