From 990e28dc960aa34d58fd8d81476581ed3866fadd Mon Sep 17 00:00:00 2001 From: DRC Date: Tue, 4 Jan 2011 21:40:11 +0000 Subject: [PATCH] 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 --- CMakeLists.txt | 8 ++++---- configure.ac | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a6c6cd7..b88da0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/configure.ac b/configure.ac index 7faf146..aa16d83 100644 --- a/configure.ac +++ b/configure.ac @@ -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 -- 2.40.0