Overview
Comment: | src/linklib: Fix priority on MorphOS |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | amiga-library |
Files: | files | file ages | folders |
SHA3-256: |
867d00992ac2d6c8cb2370354faead79 |
User & Date: | js on 2022-11-17 15:59:16 |
Other Links: | branch diff | manifest | tags |
Context
2022-11-17
| ||
16:37 | src/amiga-library.m: Don't make OFInit __saveds check-in: 8cedd82180 user: js tags: amiga-library | |
15:59 | src/linklib: Fix priority on MorphOS check-in: 867d00992a user: js tags: amiga-library | |
14:27 | Add missing functions / classes to Amiga .library check-in: cf20d02f7f user: js tags: amiga-library | |
Changes
Modified src/linklib/init.m from [f0ec5059f0] to [d9c0fbb2f6].
︙ | ︙ | |||
382 383 384 385 386 387 388 | CloseLibrary(ObjFWBase); } #if defined(OF_AMIGAOS_M68K) ADD2INIT(ctor, -2); ADD2EXIT(dtor, -2); #elif defined(OF_MORPHOS) | | | | 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | CloseLibrary(ObjFWBase); } #if defined(OF_AMIGAOS_M68K) ADD2INIT(ctor, -2); ADD2EXIT(dtor, -2); #elif defined(OF_MORPHOS) CONSTRUCTOR_P(ObjFW, 5000) { ctor(); return 0; } DESTRUCTOR_P(ObjFW, 5000) { dtor(); } #endif extern void OFPBKDF2Wrapper(const OFPBKDF2Parameters *parameters); extern void OFScryptWrapper(const OFScryptParameters *parameters); |
︙ | ︙ |