]> granicus.if.org Git - libjpeg-turbo/commitdiff
Make arithmetic coding support status messages more clear
authorDRC <dcommander@users.sourceforge.net>
Tue, 4 Jan 2011 21:40:11 +0000 (21:40 +0000)
committerDRC <dcommander@users.sourceforge.net>
Tue, 4 Jan 2011 21:40:11 +0000 (21:40 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@315 632fc199-4ca6-4c93-a231-07263d6284db

CMakeLists.txt
configure.ac

index a6c6cd71c86be883df6887cd172f31826c08565b..b88da0d48acc10f11b3d615f21912dadcbadb0df 100644 (file)
@@ -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)
index 7faf146fc9a5786c363c101ef14444b9610c987f..aa16d8377e1a9f66e7b7b71483b24c627f5c2704 100644 (file)
@@ -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