NameDateSize

..07-Jun-202128

aclocal.m4H A D03-Oct-2019147

configureH A D07-Jun-2021274.7 KiB

configure.acH A D07-Jun-20218.1 KiB

doc/H03-Oct-20193

generic/H15-Jun-20203

license.termsH A D03-Oct-2019257

Makefile.inH A D03-Oct-201915.5 KiB

pkgIndex.tcl.inH A D03-Oct-2019167

READMEH A D03-Oct-20191.3 KiB

tclconfig/H03-Oct-20194

win/H07-Jun-20215

README

1This is the SQLite extension for Tcl using the Tcl Extension
2Architecture (TEA).  For additional information on SQLite see
3
4        http://www.sqlite.org/
5
6
7UNIX BUILD
8==========
9
10Building under most UNIX systems is easy, just run the configure script
11and then run make. For more information about the build process, see
12the tcl/unix/README file in the Tcl src dist. The following minimal
13example will install the extension in the /opt/tcl directory.
14
15	$ cd sqlite-*-tea
16	$ ./configure --prefix=/opt/tcl
17	$ make
18	$ make install
19
20WINDOWS BUILD
21=============
22
23The recommended method to build extensions under windows is to use the
24Msys + Mingw build process. This provides a Unix-style build while
25generating native Windows binaries. Using the Msys + Mingw build tools
26means that you can use the same configure script as per the Unix build
27to create a Makefile. See the tcl/win/README file for the URL of
28the Msys + Mingw download.
29
30If you have VC++ then you may wish to use the files in the win
31subdirectory and build the extension using just VC++. These files have
32been designed to be as generic as possible but will require some
33additional maintenance by the project developer to synchronise with
34the TEA configure.in and Makefile.in files. Instructions for using the
35VC++ makefile are written in the first part of the Makefile.vc
36file.
37