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
parent 49aedf4231
commit 990e28dc96
2 changed files with 6 additions and 6 deletions

View File

@@ -46,16 +46,16 @@ endif()
if(WITH_ARITH_ENC) if(WITH_ARITH_ENC)
set(C_ARITH_CODING_SUPPORTED 1) set(C_ARITH_CODING_SUPPORTED 1)
message(STATUS "Arithmetic encoding enabled") message(STATUS "Arithmetic encoding support enabled")
else() else()
message(STATUS "Arithmetic encoding disabled") message(STATUS "Arithmetic encoding support disabled")
endif() endif()
if(WITH_ARITH_DEC) if(WITH_ARITH_DEC)
set(D_ARITH_CODING_SUPPORTED 1) set(D_ARITH_CODING_SUPPORTED 1)
message(STATUS "Arithmetic decoding enabled") message(STATUS "Arithmetic decoding support enabled")
else() else()
message(STATUS "Arithmetic decoding disabled") message(STATUS "Arithmetic decoding support disabled")
endif() endif()
set(JPEG_LIB_VERSION 62) set(JPEG_LIB_VERSION 62)

View File

@@ -207,7 +207,7 @@ AM_CONDITIONAL(ANON_VERSION_SCRIPT, test "x$ANON_VERSION_SCRIPT" = "xyes")
AC_SUBST(VERSION_SCRIPT_FLAG) AC_SUBST(VERSION_SCRIPT_FLAG)
AC_SUBST(ANON_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_ARG_WITH([arith-enc],
AC_HELP_STRING([--without-arith-enc], [Omit arithmetic encoding support])) AC_HELP_STRING([--without-arith-enc], [Omit arithmetic encoding support]))
if test "x$with_arith_enc" = "xno"; then if test "x$with_arith_enc" = "xno"; then
@@ -218,7 +218,7 @@ else
fi fi
AM_CONDITIONAL([WITH_ARITH_ENC], [test "x$with_arith_enc" != "xno"]) 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_ARG_WITH([arith-dec],
AC_HELP_STRING([--without-arith-dec], [Omit arithmetic decoding support])) AC_HELP_STRING([--without-arith-dec], [Omit arithmetic decoding support]))
if test "x$with_arith_dec" = "xno"; then if test "x$with_arith_dec" = "xno"; then