VirtualBox

Ignore:
Timestamp:
Aug 24, 2012 10:09:32 PM (12 years ago)
Author:
vboxsync
Message:

attempt at fixing Leopard support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/darwin/VirtualBox_mpkg/distribution.dist

    r42745 r42984  
    3737       }
    3838
     39       isLeopard = false;
    3940       try
    4041       {
     
    4243         system.log("OS version detected: " + test);
    4344         result = !(system.compareVersions(test, '10.5') >= 0);
     45         if (system.compareVersions(test, '10.6') < 0)
     46         {
     47           isLeopard = true;
     48         }
    4449       } catch (e) { system.log(e); }
    4550
     
    5257       }
    5358
    54        try
     59       if (!isLeopard)
    5560       {
    56          result = system.run('checkforrunningvms') == '1';
    57        } catch (e) { system.log(e); }
     61         try
     62         {
     63           result = system.run('checkforrunningvms') == '1';
     64         } catch (e) { system.log(e); }
    5865
    59        if(result)
    60        {
    61          my.result.type = 'Fatal';
    62          my.result.title = system.localizedString('RUNNING_VMS_TLE');
    63          my.result.message = system.localizedString('RUNNING_VMS_MSG');
     66         if(result)
     67         {
     68           my.result.type = 'Fatal';
     69           my.result.title = system.localizedString('RUNNING_VMS_TLE');
     70           my.result.message = system.localizedString('RUNNING_VMS_MSG');
     71         }
    6472       }
    6573       return result;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette