Overview
Comment: | configure: Fix incomplete FRAMEWORK_LIBS |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5ad548669b114bc54ec1236f72283cbb |
User & Date: | js on 2020-10-03 19:38:13 |
Other Links: | manifest | tags |
Context
2020-10-04
| ||
01:28 | Add -[transactionWithBlock:] check-in: 1ecc15c9b8 user: js tags: trunk | |
2020-10-03
| ||
19:38 | configure: Fix incomplete FRAMEWORK_LIBS check-in: 5ad548669b user: js tags: trunk | |
19:35 | Fix import of +Private.h file in .h file check-in: 8dda2fcc32 user: js tags: trunk | |
Changes
Modified configure.ac from [8b03759eb3] to [bb3680cb26].
︙ | |||
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | + + | AC_ARG_WITH(sqlite3, AS_HELP_STRING([--with-sqlite3=PREFIX], [build with SQLite3 in the specified prefix])) AS_IF([test x"$with_sqlite3" != x"no" -a x"$with_sqlite3" != x""], [ SQLITE3_CPPFLAGS="-I$with_sqlite3/include" SQLITE3_LIBS="-L$with_sqlite3/lib" CPPFLAGS="$CPPFLAGS $SQLITE3_CPPFLAGS" LIBS="$LIBS $SQLITE3_LIBS" FRAMEWORK_LIBS="$FRAMEWORK_LIBS $SQLITE3_LIBS" ]) AC_CHECK_LIB(sqlite3, main, [ SQLITE3_LIBS="$SQLITE3_LIBS -lsqlite3" LIBS="$LIBS -lsqlite3" FRAMEWORK_LIBS="$FRAMEWORK_LIBS -lsqlite3" ], [ AC_MSG_ERROR(You need SQLite3 and installed!) ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wall -Werror -Wwrite-strings -Wpointer-arith" |
︙ |