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

Use a modern version of SQLite3 #93

Merged
merged 1 commit into from
Apr 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docker/build_scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ yum -y install bzip2 make git patch unzip bison yasm diffutils \
build_autoconf $AUTOCONF_ROOT $AUTOCONF_HASH
autoconf --version

# Install a more recent SQLite3
curl -sO https://sqlite.org/2017/sqlite-autoconf-3160200.tar.gz
tar xfz sqlite-autoconf-3160200.tar.gz
cd sqlite-autoconf-3160200
./configure
make install
cd ..
rm -rf sqlite-autoconf-3160200*

# Compile the latest Python releases.
# (In order to have a proper SSL module, Python is compiled
# against a recent openssl [see env vars above], which is linked
Expand Down