]> source.dussan.org Git - tigervnc.git/commitdiff
Improve the messages for the SIMD configuration test now that we support
authorPierre Ossman <ossman@cendio.se>
Fri, 26 Jun 2009 14:09:47 +0000 (14:09 +0000)
committerPierre Ossman <ossman@cendio.se>
Fri, 26 Jun 2009 14:09:47 +0000 (14:09 +0000)
more than one arch.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3860 3789f03b-4d11-0410-bbf8-ca57d06f2519

common/jpeg/configure.ac

index 3bcdf43078027d48fcae0621f6dcbbbeb9b4ff2a..7d6f04e2e7a9d434654b682b1c043130f0904cb0 100644 (file)
@@ -87,16 +87,16 @@ AC_ARG_WITH([simd],
     AC_HELP_STRING([--without-simd],[Omit accelerated SIMD routines.]))
 if test "x${with_simd}" != "xno"; then
   # Check if we're on a supported CPU
-  AC_MSG_CHECKING([if host cpu type is i386 or compatible])
+  AC_MSG_CHECKING([if we have SIMD optimisations for cpu type])
   case "$host_cpu" in
     x86_64)
-      AC_MSG_RESULT(yes)
+      AC_MSG_RESULT([yes (x86_64)])
       AC_PROG_NASM
       AC_DEFINE([WITH_SIMD], [1], [Use accelerated SIMD routines.])
       AC_DEFINE([WITH_SIMD64], [1], [Use x86-64 accelerated SIMD routines.])
     ;;
     i*86 | x86 | ia32)
-      AC_MSG_RESULT(yes)
+      AC_MSG_RESULT([yes (i386)])
       AC_PROG_NASM
       AC_DEFINE([WITH_SIMD], [1], [Use accelerated SIMD routines.])
       SIMDDIR=simd