Overview
| Comment: | Fix compiling with --disable-files |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
fa9d22b297048de0b29969120be19b26 |
| User & Date: | js on 2022-08-07 16:51:33 |
| Other Links: | manifest | tags |
Context
|
2022-08-07
| ||
| 18:23 | OFEmbeddedFileURLHandler: Add scheme check (check-in: 12a7357722 user: js tags: trunk) | |
| 16:51 | Fix compiling with --disable-files (check-in: fa9d22b297 user: js tags: trunk) | |
| 16:14 | OFSystemInfo: Fix build on AmigaOS (check-in: dce2ff272b user: js tags: trunk) | |
Changes
Modified .fossil-settings/clean-glob from [cdc417e270] to [c4150a9711].
| ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | + | tests/Info.plist tests/PARAM.SFO tests/objc_sync/objc_sync tests/plugin/Info.plist tests/serialization_xml.m tests/terminal/terminal_tests tests/testfile_bin.m tests/testfile_ini.m tests/tests tests/tests.3dsx tests/tests.arm9 tests/tests.nds tests/tests.nro tests/tests.rpx utils/objfw-config utils/ofarc/ofarc utils/ofdns/ofdns utils/ofhash/ofhash utils/ofhttp/ofhttp |
Modified .fossil-settings/ignore-glob from [5e8e7833f9] to [ed0ba1aa38].
| ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | + | tests/iOS.xcodeproj/project.xcworkspace tests/iOS.xcodeproj/xcuserdata tests/objc_sync/objc_sync tests/plugin/Info.plist tests/serialization_xml.m tests/terminal/terminal_tests tests/testfile_bin.m tests/testfile_ini.m tests/tests tests/tests.3dsx tests/tests.arm9 tests/tests.nds tests/tests.nro tests/tests.rpx utils/objfw-config utils/ofarc/ofarc utils/ofdns/ofdns utils/ofhash/ofhash utils/ofhttp/ofhttp |
Modified .gitignore from [c81fedd291] to [42e9f25720].
| ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | + | tests/iOS.xcodeproj/project.xcworkspace tests/iOS.xcodeproj/xcuserdata tests/objc_sync/objc_sync tests/plugin/Info.plist tests/serialization_xml.m tests/terminal/terminal_tests tests/testfile_bin.m tests/testfile_ini.m tests/tests tests/tests.3dsx tests/tests.arm9 tests/tests.nds tests/tests.nro tests/tests.rpx utils/objfw-config utils/ofarc/ofarc utils/ofdns/ofdns utils/ofhash/ofhash utils/ofhttp/ofhttp |
Modified src/Makefile from [91bd9233b9] to [a861e4e55d].
| ︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + |
OFEmbeddedFileURLHandler.m \
OFEnumerator.m \
OFFileManager.m \
OFGZIPStream.m \
OFHMAC.m \
OFINICategory.m \
OFINIFile.m \
OFINIFileSettings.m \
OFInflate64Stream.m \
OFInflateStream.m \
OFInvocation.m \
OFLHAArchive.m \
OFLHAArchiveEntry.m \
OFList.m \
OFLocale.m \
|
| ︙ | |||
203 204 205 206 207 208 209 | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | - + - |
OFStrPTime.m \
OFSubarray.m \
OFUTF8String.m \
${LIBBASES_M} \
${RUNTIME_AUTORELEASE_M} \
${RUNTIME_INSTANCE_M} \
${UNICODE_M}
|
| ︙ |
Modified tests/OFINIFileTests.m from [005c336f0c] to [edfee9097f].
| ︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | - + | @"array1=foo\r\n" @"array1=bar\r\n" @"double=0.75\r\n"; OFURL *URL; OFINIFile *file; OFINICategory *tests, *foobar, *types; OFArray *array; |
| ︙ | |||
111 112 113 114 115 116 117 | 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | - + | TEST(@"-[removeValueForKey:]", R([foobar removeValueForKey: @"quxqux "]) && R([types removeValueForKey: @"array2"])) module = @"OFINIFile"; /* FIXME: Find a way to write files on Nintendo DS */ |
| ︙ |