source: server/databases/sqlite.xml@ 7d564a1

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7d564a1 was 7d564a1, checked in by Ken Moffat <ken@…>, 14 years ago

Security updates for poppler, firefox, webkitgtk. Update sqlite to suit, and pick up the outstanding poppler-data update.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8646 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY sqlite-download-http "http://sqlite.org/sqlite-amalgamation-&sqlite-version;.tar.gz">
8 <!ENTITY sqlite-download-ftp " ">
9 <!ENTITY sqlite-md5sum "74fe78b264f1c434c4b159d45b78e9b7">
10 <!ENTITY sqlite-size "1.5 MB">
11 <!ENTITY sqlite-buildsize "30 MB (includes optional documentation)">
12 <!ENTITY sqlite-time "0.4 SBU">
13
14 <!ENTITY sqlite-docs-version "3_7_3">
15 <!ENTITY sqlite-docs-md5sum "ed6f040910936cf57ad55045fa3bcb1d">
16 <!ENTITY sqlite-docs-size "3.2 MB">
17 <!ENTITY sqlite-docs-download "http://sqlite.org/sqlite_docs_&sqlite-docs-version;.zip">
18]>
19
20<sect1 id="sqlite" xreflabel="SQLite-&sqlite-version;">
21 <?dbhtml filename="sqlite.html"?>
22
23 <sect1info>
24 <othername>$LastChangedBy$</othername>
25 <date>$Date$</date>
26 </sect1info>
27
28 <title>SQLite-&sqlite-version;</title>
29
30 <indexterm zone="sqlite">
31 <primary sortas="a-SQLite">SQLite</primary>
32 </indexterm>
33
34 <sect2 role="package">
35 <title>Introduction to SQLite</title>
36
37 <para>The <application>SQLite</application> package is a software
38 library that implements a self-contained, serverless,
39 zero-configuration, transactional SQL database engine.</para>
40
41 &lfs67_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>Download (HTTP): <ulink url="&sqlite-download-http;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download (FTP): <ulink url="&sqlite-download-ftp;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download MD5 sum: &sqlite-md5sum;</para>
53 </listitem>
54 <listitem>
55 <para>Download size: &sqlite-size;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated disk space required: &sqlite-buildsize;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated build time: &sqlite-time;</para>
62 </listitem>
63 </itemizedlist>
64
65 <!-- <bridgehead renderas="sect4">Optional</bridgehead>
66 <para role="optional"><xref linkend="tcl"/> (Required to run the test suite)</para> -->
67
68 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
69 <itemizedlist spacing="compact">
70 <title>Optional Documentation</title>
71 <listitem>
72 <para>Download (HTTP): <ulink url="&sqlite-docs-download;"/></para>
73 </listitem>
74 <listitem>
75 <para>Download MD5 sum: &sqlite-docs-md5sum;</para>
76 </listitem>
77 <listitem>
78 <para>Download size: &sqlite-docs-size;</para>
79 </listitem>
80 </itemizedlist>
81
82 <bridgehead renderas="sect3">SQLite Dependencies</bridgehead>
83
84 <bridgehead renderas="sect4">Optional</bridgehead>
85 <para role="optional"><xref linkend="unzip"/> (Required to unzip the documentation)</para>
86
87 <para condition="html" role="usernotes">User Notes:
88 <ulink url="&blfs-wiki;/sqlite"/></para>
89
90 </sect2>
91
92 <sect2 role="installation">
93 <title>Installation of SQLite</title>
94
95 <para>If you downloaded the optional documentation, issue the following
96 command to install the documentation into the source tree:</para>
97
98<screen><userinput>unzip -q ../sqlite_docs_&sqlite-docs-version;.zip</userinput></screen>
99
100 <para>Install <application>SQLite</application> by running the following
101 commands:</para>
102
103<screen><userinput>CFLAGS="-g -O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1" \
104 ./configure --prefix=/usr \
105 --enable-threadsafe \
106 --enable-readline \
107 --enable-dynamic-extensions &amp;&amp;
108make</userinput></screen>
109
110 <para>This package does not come with a test suite.</para>
111
112 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
113
114<screen role="root"><userinput>make install</userinput></screen>
115
116 <para>If you downloaded the optional documentation, issue the following
117 commands as the <systemitem class="username">root</systemitem> user to
118 install it:</para>
119
120<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/sqlite-&sqlite-version; &amp;&amp;
121cp -v -R sqlite-&sqlite-docs-version;-docs/* \
122 /usr/share/doc/sqlite-&sqlite-version;</userinput></screen>
123
124 </sect2>
125
126 <sect2 role="commands">
127 <title>Command Explanations</title>
128
129 <para><parameter>CFLAGS="-g -O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1"
130 </parameter>: Applications such as <application>firefox</application> require
131 secure delete and enable unlock notify to be turned on. The only way to do
132 this is to include them in the CFLAGS. By default, these are set to
133 <literal>"-g -O2"</literal> so we specify that to preserve those settings.
134 You may, of course, wish to omit the <literal>'-g'</literal> if you do not
135 wish to create debugging information. For further information on what can
136 be specified see <ulink url="http://www.sqlite.org/compile.html"/>.</para>
137
138 <para><parameter>--enable-threadsafe</parameter>: Though the documentation
139 and running <command>./configure --help</command> indicate that this is the
140 default, it is not. You must add this parameter if you want a threadsafe
141 library.</para>
142
143 <para><parameter>--enable-readline</parameter>: This parameter enables
144 command line editing capability to the <command>sqlite3</command>
145 program.</para>
146
147 <para><parameter>--enable-dynamic-extensions</parameter>: This creates
148 library modules that are dynamically linked as needed instead of statically
149 linking them into the main <application>SQLite</application> library.</para>
150
151 </sect2>
152
153 <sect2 role="content">
154 <title>Contents</title>
155
156 <segmentedlist>
157 <segtitle>Installed Program</segtitle>
158 <segtitle>Installed Library</segtitle>
159 <segtitle>Installed Directories</segtitle>
160
161 <seglistitem>
162 <seg>sqlite3</seg>
163 <seg>libsqlite3.{so,a}</seg>
164 <seg>None</seg>
165 </seglistitem>
166 </segmentedlist>
167
168 <variablelist>
169 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
170 <?dbfo list-presentation="list"?>
171 <?dbhtml list-presentation="table"?>
172
173 <varlistentry id="sqlite3">
174 <term><command>sqlite3</command></term>
175 <listitem>
176 <para>A terminal-based front-end to the <application>SQLite
177 </application> library that can evaluate queries interactively
178 and display the results.</para>
179 <indexterm zone="sqlite sqlite3">
180 <primary sortas="b-sqlite3">sqlite3</primary>
181 </indexterm>
182 </listitem>
183 </varlistentry>
184
185 <varlistentry id="libsqlite3">
186 <term><filename class='libraryfile'>libsqlite3.{so,a}</filename></term>
187 <listitem>
188 <para>Contains the <application>SQLite</application> API functions.</para>
189 <indexterm zone="sqlite libsqlite3">
190 <primary sortas="c-libsqlite3">libsqlite3.{so,a}</primary>
191 </indexterm>
192 </listitem>
193 </varlistentry>
194
195 </variablelist>
196
197 </sect2>
198
199</sect1>
Note: See TracBrowser for help on using the repository browser.