Overview
Comment: | Include includedir in .oc file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA3-256: |
86f27a3ae3ccf895cacdc3043559bc27 |
User & Date: | js on 2024-08-17 00:32:22 |
Other Links: | manifest | tags |
Context
2024-08-17
| ||
00:32 | Include includedir in .oc file Leaf check-in: 86f27a3ae3 user: js tags: trunk | |
2024-08-11
| ||
18:16 | Minor documentation improvement check-in: 4a11efb8df user: js tags: trunk | |
Changes
Modified ObjSQLite3.oc.in from [2ce2ce1644] to [82177fe97f].
1 | package_format 1 | | | 1 2 3 4 5 | package_format 1 CPPFLAGS="$CPPFLAGS -I@includedir@ @SQLITE3_CPPFLAGS@" LIBS="-L@libdir@ -lobjsqlite3 @SQLITE3_LIBS@ $LIBS" FRAMEWORK_LIBS="-L@libdir@ -lobjsqlite3 @SQLITE3_LIBS@ $FRAMEWORK_LIBS" STATIC_LIBS="@libdir@/libobjsqlite3.a @SQLITE3_LIBS@ $STATIC_LIBS" |
Modified meson.build from [7ad037e2a1] to [61011dc680].
︙ | ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 | [objfwconfig, '--packages-dir'], check: true).stdout().strip() configure_file( input: 'ObjSQLite3.oc.in', output: 'ObjSQLite3.oc', configuration: { 'libdir': get_option('prefix') / get_option('libdir'), 'SQLITE3_CPPFLAGS': sqlite3_cflags, 'SQLITE3_LIBS': sqlite3_libs, }, install: true, install_dir: packages_dir) | > | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | [objfwconfig, '--packages-dir'], check: true).stdout().strip() configure_file( input: 'ObjSQLite3.oc.in', output: 'ObjSQLite3.oc', configuration: { 'includedir': get_option('prefix') / get_option('includedir'), 'libdir': get_option('prefix') / get_option('libdir'), 'SQLITE3_CPPFLAGS': sqlite3_cflags, 'SQLITE3_LIBS': sqlite3_libs, }, install: true, install_dir: packages_dir) |