Overview
Comment: | Set b_asneeded=false to make ObjFWTLS work |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7c5c1c07e288c531602887b7a803e803 |
User & Date: | js on 2024-08-07 20:34:54 |
Other Links: | manifest | tags |
Context
2024-08-07
| ||
23:15 | Set soversion check-in: c2c2f03cd2 user: js tags: trunk | |
20:34 | Set b_asneeded=false to make ObjFWTLS work check-in: 7c5c1c07e2 user: js tags: trunk | |
20:14 | ObjMatrix.oc.in: Fix missing @ check-in: bec8b4dab3 user: js tags: trunk | |
Changes
Modified meson.build from [97f09eac61] to [444e8d3bcc].
1 2 3 4 5 6 7 8 9 10 11 | project('ObjMatrix', 'objc', version: '0.1', meson_version: '>= 1.5.0', default_options: { 'warning_level': '3', }) objfw_dep = dependency('objfw', modules: ['ObjFWTLS', 'ObjSQLite3']) incdir = include_directories('src', 'src/exceptions') | > | 1 2 3 4 5 6 7 8 9 10 11 12 | project('ObjMatrix', 'objc', version: '0.1', meson_version: '>= 1.5.0', default_options: { 'b_asneeded': 'false', 'warning_level': '3', }) objfw_dep = dependency('objfw', modules: ['ObjFWTLS', 'ObjSQLite3']) incdir = include_directories('src', 'src/exceptions') |
︙ | ︙ |