Differences From Artifact [144754058e]:
- File utils/ofhttp/OFHTTP.m — part of check-in [d974e769c5] at 2017-06-04 01:30:12 on branch trunk — OFLocalization: Add support for MorphOS + libnix (user: js, size: 25148) [annotate] [blame] [check-ins using]
To Artifact [09fa3de57a]:
- File
utils/ofhttp/OFHTTP.m
— part of check-in
[c9621825fc]
at
2017-06-04 18:48:03
on branch trunk
— Treat MorphOS + ixemul as a separate platform
This reduces the ifdef hell and makes much more sense, as with ixemul,
no native calls are allowed. (user: js, size: 25120) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
266 267 268 269 270 271 272 |
[OFApplication activateSandbox: sandbox];
} @finally {
[sandbox release];
}
#endif
| | | 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
[OFApplication activateSandbox: sandbox];
} @finally {
[sandbox release];
}
#endif
#ifndef OF_MORPHOS
[OFLocalization addLanguageDirectory: @LANGUAGE_DIR];
#else
[OFLocalization addLanguageDirectory: @"PROGDIR:/share/ofhttp/lang"];
#endif
optionsParser = [OFOptionsParser parserWithOptions: options];
while ((option = [optionsParser nextOption]) != '\0') {
|
| ︙ | ︙ |