Index: /trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/Localizable.strings
===================================================================
--- /trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/Localizable.strings	(revision 56935)
+++ /trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/Localizable.strings	(revision 56936)
@@ -14,7 +14,7 @@
 
 'UNSUPPORTED_HW_MACHINE_TLE' = "Unsupported hardware architecture detected!";
-'UNSUPPORTED_HW_MACHINE_MSG' = "The installer has detected an unsupported architecture. VirtualBox only runs on the x86 and amd64 architectures.";
+'UNSUPPORTED_HW_MACHINE_MSG' = "The installer has detected an unsupported architecture. VirtualBox only runs on the amd64 architecture.";
 
 'UNSUPPORTED_OS_TLE' = "Unsupported OS version detected!";
-'UNSUPPORTED_OS_MSG' = "The installer has detected an unsupported operation system. VirtualBox requires Mac OS X 10.6 or later.";
+'UNSUPPORTED_OS_MSG' = "The installer has detected an unsupported operation system. VirtualBox requires Mac OS X 10.8 or later.";
 
Index: /trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/distribution.dist
===================================================================
--- /trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/distribution.dist	(revision 56935)
+++ /trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/distribution.dist	(revision 56936)
@@ -25,7 +25,22 @@
        try
        {
+           test = system.version['ProductVersion'];
+           system.log("OS version detected: " + test);
+           result = (system.compareVersions(test, '10.8') >= 0);
+       } catch (e) { system.log(e); result = false; }
+
+       if (!result)
+       {
+           my.result.type = 'Fatal';
+           my.result.title = system.localizedString('UNSUPPORTED_OS_TLE');
+           my.result.message = system.localizedString('UNSUPPORTED_OS_MSG');
+           return result;
+       }
+
+       try
+       {
            test = system.sysctl('hw.machine');
            system.log("Hardware architecture detected: " + test);
-           result = (test == 'i386' || test == 'x86_64');
+           result = (test == 'x86_64');
        } catch (e) { system.log(e); result = false; }
 
@@ -35,19 +50,4 @@
            my.result.title = system.localizedString('UNSUPPORTED_HW_MACHINE_TLE');
            my.result.message = system.localizedString('UNSUPPORTED_HW_MACHINE_MSG');
-           return result;
-       }
-
-       try
-       {
-           test = system.version['ProductVersion'];
-           system.log("OS version detected: " + test);
-           result = (system.compareVersions(test, '10.6') >= 0);
-       } catch (e) { system.log(e); result = false; }
-
-       if (!result)
-       {
-           my.result.type = 'Fatal';
-           my.result.title = system.localizedString('UNSUPPORTED_OS_TLE');
-           my.result.message = system.localizedString('UNSUPPORTED_OS_MSG');
            return result;
        }
