freebsd-dev/contrib/sqlite3/tea
Cy Schubert e7e621f94d sqlite3: Vendor import of sqlite3 3.41.2
Release notes at https://www.sqlite.org/releaselog/3_41_2.html.

Obtained from:  https://www.sqlite.org/2023/sqlite-autoconf-3410200.tar.gz
MFC after:      2 weeks

Merge commit '853a43f7c79218855a6e45a25a00b942972e3fa1'
2023-04-17 09:02:41 -07:00
..
doc MFV r342175: 2018-12-18 01:12:30 +00:00
generic sqlite3: Vendor import of sqlite3 3.41.0 2023-02-28 05:28:07 -08:00
tclconfig sqlite3: Vendor import of sqlite3 3.40.0 2022-11-28 06:08:46 -08:00
win sqlite3: Vendor import of sqlite3 3.40.0 2022-11-28 06:08:46 -08:00
aclocal.m4 MFV r342175: 2018-12-18 01:12:30 +00:00
configure sqlite3: Vendor import of sqlite3 3.41.2 2023-04-17 09:02:41 -07:00
configure.ac sqlite3: Vendor import of sqlite3 3.41.2 2023-04-17 09:02:41 -07:00
license.terms MFV r342175: 2018-12-18 01:12:30 +00:00
Makefile.in sqlite3: Vendor import of sqlite3 3.40.0 2022-11-28 06:08:46 -08:00
pkgIndex.tcl.in sqlite3: Vendor import of sqlite3 3.40.0 2022-11-28 06:08:46 -08:00
README MFV r342175: 2018-12-18 01:12:30 +00:00

This is the SQLite extension for Tcl using the Tcl Extension
Architecture (TEA).  For additional information on SQLite see

        http://www.sqlite.org/


UNIX BUILD
==========

Building under most UNIX systems is easy, just run the configure script
and then run make. For more information about the build process, see
the tcl/unix/README file in the Tcl src dist. The following minimal
example will install the extension in the /opt/tcl directory.

	$ cd sqlite-*-tea
	$ ./configure --prefix=/opt/tcl
	$ make
	$ make install

WINDOWS BUILD
=============

The recommended method to build extensions under windows is to use the
Msys + Mingw build process. This provides a Unix-style build while
generating native Windows binaries. Using the Msys + Mingw build tools
means that you can use the same configure script as per the Unix build
to create a Makefile. See the tcl/win/README file for the URL of
the Msys + Mingw download.

If you have VC++ then you may wish to use the files in the win
subdirectory and build the extension using just VC++. These files have
been designed to be as generic as possible but will require some
additional maintenance by the project developer to synchronise with
the TEA configure.in and Makefile.in files. Instructions for using the
VC++ makefile are written in the first part of the Makefile.vc
file.