about summary refs log tree commit diff
path: root/config.mk.in
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-10-25 01:44:57 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2013-10-25 01:44:57 +0000
commita3394f4a12db2bbbcd3ed806f2b89106f5f1c501 (patch)
tree0bf9ff153024f0b0151262241235e925f874df38 /config.mk.in
parent2bb01f0150fad5b628d04dc92bb24f4b03fb62da (diff)
downloadnetpbm-mirror-a3394f4a12db2bbbcd3ed806f2b89106f5f1c501.tar.gz
netpbm-mirror-a3394f4a12db2bbbcd3ed806f2b89106f5f1c501.tar.xz
netpbm-mirror-a3394f4a12db2bbbcd3ed806f2b89106f5f1c501.zip
Change references to MMX to SSE to match actual code
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2025 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'config.mk.in')
-rw-r--r--config.mk.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.mk.in b/config.mk.in
index 9197e956..307c6480 100644
--- a/config.mk.in
+++ b/config.mk.in
@@ -89,13 +89,13 @@ INTTYPES_H = <inttypes.h>
 HAVE_INT64 = Y
 #HAVE_INT64 = N
 
-# WANT_MMX tells whether the build should use MMX instructions, via the the
-# standard MMX intrinsics (operators such as '_mm_movemask_epi8').  MMX
+# WANT_SSE tells whether the build should use SSE instructions, via the the
+# standard SSE intrinsics (operators such as '_mm_movemask_epi8').  SSE
 # instructions are faster than traditional instructions, but aren't available
 # on all CPUs.  Also, the standard intrinsics are not available in all
 # compilers.
-WANT_MMX = N
-#WANT_MMX = Y
+WANT_SSE = N
+#WANT_SSE = Y
 
 # CC and LD are for building the Netpbm programs, which are not necessarily
 # intended to run on the same system on which Make is running.  But when we