repo/extra/sqlite/build

17 lines
270 B
Plaintext
Raw Normal View History

2019-10-05 18:54:17 +00:00
#!/bin/sh -e
2019-11-28 23:05:20 +00:00
export CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1"
2021-07-03 20:42:02 +00:00
sed 's/ -ltinfo//g' configure > _
mv -f _ configure
chmod +x configure
2019-10-05 18:54:17 +00:00
./configure \
--prefix=/usr \
--enable-threadsafe \
--enable-dynamic-extensions \
--enable-fts5
2021-07-18 03:16:54 +00:00
make
make install