aboutsummaryrefslogtreecommitdiff
path: root/ambient_light_sensor.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-11-03 04:57:19 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-11-03 04:57:19 +0000
commit3bc74a049fbc031e86d2a9bebd0c7fb3a24fc3ae (patch)
tree93657cbffdb38033955897a28ce4308b614c4dc0 /ambient_light_sensor.c
parentaa72cd89981f7e63a383580c9599d6233f188661 (diff)
only use new 10.5+ API on 10.6+ as an easy way to filter against PowerPC builds which still run on 10.4 since 10.6 does not support PowerPC
svn path=/trunk/externals/apple/; revision=15696
Diffstat (limited to 'ambient_light_sensor.c')
-rw-r--r--ambient_light_sensor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ambient_light_sensor.c b/ambient_light_sensor.c
index 26c18db..822057d 100644
--- a/ambient_light_sensor.c
+++ b/ambient_light_sensor.c
@@ -76,9 +76,9 @@ static void ambient_light_sensor_output(t_ambient_light_sensor* x)
if(! x->io_connect) return;
#if !defined(__LP64__)
- // Check if Mac OS X 10.5 API is available...
+ // Check if Mac OS X 10.5/10.6 API is available...
SInt32 MacVersion;
- if ((Gestalt(gestaltSystemVersion, &MacVersion) == noErr) && (MacVersion >= 0x1050)) {
+ if ((Gestalt(gestaltSystemVersion, &MacVersion) == noErr) && (MacVersion >= 0x1060)) {
// ...and use it if it is.
#endif
#ifdef AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER