File: IsMinimumOSXVersion.m

package info (click to toggle)
psychtoolbox-3 3.0.9%2Bsvn2579.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 63,408 kB
  • sloc: ansic: 73,310; cpp: 11,139; objc: 3,129; sh: 1,669; python: 382; php: 272; makefile: 172; java: 113
file content (37 lines) | stat: -rw-r--r-- 1,011 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
function rc = IsMinimumOSXVersion(major, minor, point)
% rc = IsMinimumOSXVersion(major, minor, point);
%
% Checks if the script is running on a MacOS/X system with at least the
% requested (major,minor,point) version, e.g., to test for a MacOS/X system
% of 10.4.8 or later, do a IsMinimumOSXVersion(10,4,8);
%
% rc is 0 if the system is of a lower version, 1 if it satisfies this
% minimum version, 2 if the function doesn't know.

% History:
% 11/26/2007 Written (MK), based on code by Roger Woods (UCLA).

if ~IsOSX
    rc = 0;
    return;
end

gestaltbits=Gestalt('sys1');
majorversion=bin2dec(char(49*gestaltbits+48*~gestaltbits));

% Preinit to 'No':
rc = 0;

if majorversion >= major
    gestaltbits=Gestalt('sys2');
    minorversion=bin2dec(char(49*gestaltbits+48*~gestaltbits));
    if minorversion >= minor
        gestaltbits = Gestalt('sys3');
        pointversion=bin2dec(char(49*gestaltbits+48*~gestaltbits));
        if pointversion >= point
            rc = 1;
        end
    end
end

return;