changeset 321:dff8ec43c86d

* We should have a 64-bit Python module now: no longer force to 32
author Chris Cannam
date Wed, 02 Mar 2011 16:28:03 +0000
parents 67feb05754ee
children 913d213dd427
files hgrunner.cpp
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/hgrunner.cpp	Wed Mar 02 13:27:32 2011 +0000
+++ b/hgrunner.cpp	Wed Mar 02 16:28:03 2011 +0000
@@ -423,9 +423,7 @@
 #endif
 
 #ifdef Q_OS_MAC
-    // On OS/X 10.6, Python is 64-bit by default but our Hg extension
-    // is only available in 32-bit
-    if (settings.value("python32", true).toBool()) {
+    if (settings.value("python32", false).toBool()) {
         env.insert("VERSIONER_PYTHON_PREFER_32_BIT", "1");
     }
 #endif