sqlite: Bump version, disable static.

This commit is contained in:
Augustin Cavalier
2020-04-11 14:49:04 -04:00
parent 1868a2cfb9
commit d12d694835

View File

@@ -8,8 +8,8 @@ COPYRIGHT="Public Domain"
LICENSE="SQLite"
REVISION="1"
sqliteVersion=$(echo $portVersion | sed -e 's/\.\([0-9]\>\)/0\1/g' -e 's/\.//g')
SOURCE_URI="https://www.sqlite.org/2019/sqlite-autoconf-$sqliteVersion.tar.gz"
CHECKSUM_SHA256="8c5a50db089bd2a1b08dbc5b00d2027602ca7ff238ba7658fabca454d4298e60"
SOURCE_URI="https://www.sqlite.org/2020/sqlite-autoconf-$sqliteVersion.tar.gz"
CHECKSUM_SHA256="62284efebc05a76f909c580ffa5c008a7d22a1287285d68b7825a2b6b51949ae"
SOURCE_DIR="sqlite-autoconf-$sqliteVersion"
ARCHITECTURES="x86_gcc2 x86 x86_64 sparc m68k"
@@ -65,7 +65,8 @@ BUILD()
-DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_SECURE_DELETE=1 \
-DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS \
-DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_RTREE"
runConfigure ./configure
runConfigure ./configure --disable-static
# Not using "make $jobArgs" because parallel builds are not supported.
make
}