Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SQLite to 3.35.0 #1328

Merged
merged 1 commit into from
Mar 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions thirdparty/sqlite/CMakeLists.txt
Expand Up @@ -33,12 +33,12 @@ set(CFG_CMD "${CFG_CMD} --disable-readline")
set(CFG_CMD "${CFG_CMD} --disable-static-shell")

include(ExternalProject)
set(SQLITE_VER "3340000")
set(SQLITE_VER "3350000")
ExternalProject_Add(
${PROJECT_NAME}
DOWNLOAD_DIR ${KO_DOWNLOAD_DIR}
URL https://www.sqlite.org/2020/sqlite-autoconf-${SQLITE_VER}.tar.gz
URL_MD5 7f33c9db7b713957fcb9271fe9049fef
URL https://www.sqlite.org/2021/sqlite-autoconf-${SQLITE_VER}.tar.gz
URL_MD5 1b51302322aef8aec70f129147e666b3
BUILD_IN_SOURCE 1
CONFIGURE_COMMAND ${CFG_CMD}
BUILD_COMMAND ${KO_MAKE_RECURSIVE} -j1
Expand Down