Ignore:
Timestamp:
09/20/09 04:53:59 (15 years ago)
Author:
Nicholas Riley
Message:

Basic 10.6 compatibility fixes for Perl embedding. Apparently DynaLoader is no longer necessary (was it ever?).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/NJRDateFormatter.m

    r577 r581  
    3838}
    3939
    40 static const NSDateFormatterStyle formatterStyles[] = {
     40static NSDateFormatterStyle formatterStyles[] = {
    4141    NSDateFormatterShortStyle,
    4242    NSDateFormatterMediumStyle,
     
    4848// note: these formats must be 0-padded where appropriate and contain no spaces
    4949// or attempts to force them into strict interpretation will fail
    50 static const NSString *timeFormats[] = {
     50static NSString *timeFormats[] = {
    5151    @"hha",
    5252    @"HHmmss",
     
    7373    } else if (minorVersion == 5) {
    7474        libName = @"libParseDate-10.5";
     75    } else if (minorVersion == 6) {
     76        libName = @"libParseDate-10.6";
    7577    } else {
    7678        return;
Note: See TracChangeset for help on using the changeset viewer.