MacInstaller: more explicitly support 10.7

Tokend has been discontinued on 10.7 but still works.

This fixes #382
This commit is contained in:
Martin Paljak 2011-09-13 21:57:22 +03:00
parent d505a55483
commit 5fc31b7f6e
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
<h1>OpenSC, version @PACKAGE_VERSION@</h1>
<p>for Mac OS X 10.6 (Snow Leopard), universal (32-bit and 64-bit)</p>
<p>for Mac OS X 10.6 (Snow Leopard) and 10.7 (Lion), universal (32-bit and 64-bit)</p>
<p>OpenSC provides a set of libraries and utilities to work with smart cards. Its main focus is on cards that support cryptographic operations, and facilitate their use in security applications such as authentication, mail encryption and digital signatures.</p>

View File

@ -13,8 +13,8 @@ DO_CHECKS: {
$EXIT_VALUE = ((1 << 6) | ( 1 << 5 ) | 17 );
last;
}
# 10.6 system must be active
if(CheckVersion("$SYSTEM_VERS", "10.7.0", "ProductVersion", ">")) {
# 10.6 or 10.7 system must be active
if(CheckVersion("$SYSTEM_VERS", "10.8", "ProductVersion", ">")) {
$EXIT_VALUE = ((1 << 6) | ( 1 << 5 ) | 18 );
last;
}