2019-10-05 12:54:17 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-07-27 08:54:02 -06:00
|
|
|
# Required by qt5 and possibly other software.
|
2022-08-01 13:40:33 -06:00
|
|
|
export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA"
|
2019-10-05 12:54:17 -06:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-threadsafe \
|
|
|
|
--enable-dynamic-extensions \
|
2021-07-27 08:54:02 -06:00
|
|
|
--enable-fts5 \
|
|
|
|
ac_cv_search_readline=no \
|
2019-10-05 12:54:17 -06:00
|
|
|
|
2021-07-17 21:16:54 -06:00
|
|
|
make
|
|
|
|
make install
|