about summary refs log tree commit diff
path: root/buildtools
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/configure.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index 8f1c46ba..9d0e7808 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -1004,15 +1004,16 @@ sub determineMmxCapability($) {
             
         if ($success) {
             print("It does.\n");
-            $$haveEmmintrinR = 'Y';
+            $$haveEmmintrinR = $TRUE;
         } else {
             print("It does not.  Programs will not exploit fast MMX " .
                   "instructions.\n");
-            $$haveEmmintrinR = 'N';
+            $$haveEmmintrinR = $FALSE;
         }
         print("\n");
     } else {
-        $$haveEmmintrinR = "N";
+        # We conservatively estimate the facility isn't there
+        $$haveEmmintrinR = $FALSE;
     }
 }