Overview
| Comment: | OFINIFile: Remove dependency on support for files |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ddbeb1405908669ac21676c10e8410b0 |
| User & Date: | js on 2022-08-07 16:10:12 |
| Other Links: | manifest | tags |
Context
|
2022-08-07
| ||
| 16:14 | OFSystemInfo: Fix build on AmigaOS (check-in: dce2ff272b user: js tags: trunk) | |
| 16:10 | OFINIFile: Remove dependency on support for files (check-in: ddbeb14059 user: js tags: trunk) | |
| 16:04 | tests: Embed testfile.ini as well (check-in: 942f77abbe user: js tags: trunk) | |
Changes
Modified src/Makefile from [1871f1fc55] to [91bd9233b9].
| ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + + |
OFDate.m \
OFDictionary.m \
OFEmbeddedFileURLHandler.m \
OFEnumerator.m \
OFFileManager.m \
OFGZIPStream.m \
OFHMAC.m \
OFINICategory.m \
OFINIFile.m \
OFInflate64Stream.m \
OFInflateStream.m \
OFInvocation.m \
OFLHAArchive.m \
OFLHAArchiveEntry.m \
OFList.m \
OFLocale.m \
|
| ︙ | |||
83 84 85 86 87 88 89 90 91 92 93 94 95 96 | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | + |
OFString+JSONParsing.m \
OFString+PropertyListParsing.m \
OFString+Serialization.m \
OFString+URLEncoding.m \
OFString+XMLEscaping.m \
OFString+XMLUnescaping.m \
${OF_SUBPROCESS_M} \
OFSettings.m \
OFSystemInfo.m \
OFTarArchive.m \
OFTarArchiveEntry.m \
OFThread.m \
OFTimer.m \
OFTriple.m \
OFURL.m \
|
| ︙ | |||
111 112 113 114 115 116 117 | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | - - - |
OFZIPArchiveEntry.m \
${USE_SRCS_FILES} \
${USE_SRCS_PLUGINS} \
${USE_SRCS_SOCKETS} \
${USE_SRCS_THREADS} \
${USE_SRCS_WINDOWS}
SRCS_FILES = OFFile.m \
|
| ︙ |
Modified src/ObjFW.h from [0a81ad65de] to [eef584b01b].
| ︙ | |||
65 66 67 68 69 70 71 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | + - - + + - | #import "OFTarArchive.h" #import "OFTarArchiveEntry.h" #import "OFZIPArchive.h" #import "OFZIPArchiveEntry.h" #import "OFFileManager.h" #ifdef OF_HAVE_FILES # import "OFFile.h" #endif |
| ︙ |
Modified tests/Makefile from [eba4233c5f] to [798d177ea8].
| ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + |
OFArrayTests.m \
${OF_BLOCK_TESTS_M} \
OFCharacterSetTests.m \
OFDataTests.m \
OFDateTests.m \
OFDictionaryTests.m \
OFHMACTests.m \
OFINIFileTests.m \
OFInvocationTests.m \
OFJSONTests.m \
OFListTests.m \
OFLocaleTests.m \
OFMD5HashTests.m \
OFMemoryStreamTests.m \
OFMethodSignatureTests.m \
|
| ︙ | |||
61 62 63 64 65 66 67 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | - |
${USE_SRCS_PLUGINS} \
${USE_SRCS_SOCKETS} \
${USE_SRCS_THREADS} \
${USE_SRCS_WINDOWS} \
serialization_xml.m \
testfile_bin.m \
testfile_ini.m
|
| ︙ |
Modified tests/TestsAppDelegate.m from [c0318f8a2b] to [7283aa5620].
| ︙ | |||
398 399 400 401 402 403 404 | 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | - + | [self SHA224HashTests]; [self SHA256HashTests]; [self SHA384HashTests]; [self SHA512HashTests]; [self HMACTests]; [self PBKDF2Tests]; [self scryptTests]; |
| ︙ |