Differences From Artifact [dad1460ce8]:
- File
src/OFURLHandler_file.m
— part of check-in
[d71abc5366]
at
2018-08-17 01:17:14
on branch trunk
— AmigaOS 4: Do not use libauto
libauto loads the libraries too late. (user: js, size: 30264) [annotate] [blame] [check-ins using]
To Artifact [f04b110da0]:
- File
src/OFURLHandler_file.m
— part of check-in
[c162213e4a]
at
2018-08-19 01:04:03
on branch trunk
— Do not use lstat() on Nintendo 3DS
lstat() exists, but just crashes. (user: js, size: 30299) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
228 229 230 231 232 233 234 | return stat([path cStringWithEncoding: [OFLocale encoding]], buffer); #endif } static int of_lstat(OFString *path, of_stat_t *buffer) { | | > | 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | return stat([path cStringWithEncoding: [OFLocale encoding]], buffer); #endif } static int of_lstat(OFString *path, of_stat_t *buffer) { #if defined(HAVE_LSTAT) && !defined(OF_WINDOWS) && !defined(OF_AMIGAOS) && \ !defined(OF_NINTENDO_3DS) # ifdef OF_HAVE_OFF64_T return lstat64([path cStringWithEncoding: [OFLocale encoding]], buffer); # else return lstat([path cStringWithEncoding: [OFLocale encoding]], buffer); # endif #else return of_stat(path, buffer); |
︙ | ︙ |