SQLite3インストールメモ

SQLite home pageからsqliteの最新版をダウンロード。

Source Codeに同梱されているREADMEを開く。

tar xzf sqlite.tar.gz    ;#  Unpack the source tree into "sqlite"
mkdir bld ;# Build will occur in a sibling directory
cd bld ;# Change to the build directory
../sqlite/configure ;# Run the configure script
make ;# Run the makefile.
make install ;# (Optional) Install the build products
この手順に従ってインストール。

wget http://www.sqlite.org/sqlite-3.3.12.tar.gz

tar zxvf sqlite-3.3.12.tar.gz

mkdir bld

cd bld

../sqlite-3.3.12/configure

make
make時にエラー発生。

make: *** [tclsqlite.lo] Error 1
configureオプションを変更。

make clean

../sqlite-3.3.12/configure --disable-tcl

make

make install


SQLite3インストールメモより