Skip Menu |

This queue is for tickets about the Mac-SystemDirectory CPAN distribution.

Report information
The Basics
Id: 65366
Status: resolved
Priority: 0/
Queue: Mac-SystemDirectory

People
Owner: Nobody in particular
Requestors: mdootson [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Availability of OS X functions
Hi, the check #if defined(MAC_OS_X_VERSION_10_5) does not tell you if the functions available from 10.5 onwards are available in your build environment. Under versions 10.5 and 10.6 Perl may have been built for different targets, so the check needs to be #if (defined(MAC_OS_X_VERSION_10_5) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5)) similarly #if (defined(MAC_OS_X_VERSION_10_6) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6)) regards Mark
Hi, I have addressed this and pushed a new release to CPAN. Thanks for the report! -- chansen