Difference between revisions of "SQLite"
From CBLFS
Jump to navigationJump to searchLine 12: | Line 12: | ||
=== Optional === | === Optional === | ||
* [[TCL]] | * [[TCL]] | ||
+ | |||
+ | {{ Note|If you want berkley db DO NOT USE THE EXTERNAL VERSION PROVIDED BY CBLFS. It will fail. Instead just pass --with-berkley-db. The version provided with sql is version 4.1.24.}} | ||
== Non-Multilib == | == Non-Multilib == |
Revision as of 08:36, 25 February 2008
Download Source: | http://www.sqlite.org/sqlite-2.8.17.tar.gz |
---|
Contents
Introduction to SQLite
Project Homepage: Unknown
Dependencies
Optional
If you want berkley db DO NOT USE THE EXTERNAL VERSION PROVIDED BY CBLFS. It will fail. Instead just pass --with-berkley-db. The version provided with sql is version 4.1.24.
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
sed -i 's:$(exec_prefix)/lib:&32:g' Makefile.in && CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ --libdir=/usr/lib32 && make
Install the package
make install && sed -i "/^libdir=/s:=.*:='/usr/lib32':" /usr/lib32/libsqlite.la
64Bit
Compile the package:
sed -i 's:$(exec_prefix)/lib:&64:g' Makefile.in && CC="gcc ${BUILD64}" ./configure --prefix=/usr \ --libdir=/usr/lib64 && make
Install the package
make install && sed -i "/^libdir=/s:=.*:='/usr/lib64':" /usr/lib64/libsqlite.la