Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: third_party/sqlite/src/autoconf/README.first

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/autoconf/Makefile.am ('k') | third_party/sqlite/src/autoconf/config.guess » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/autoconf/README.first
diff --git a/third_party/sqlite/src/autoconf/README.first b/third_party/sqlite/src/autoconf/README.first
index 6676228ad674cfe43af4d4761a5d13c302ff830f..5c2ea0a70f295d6cc78488911cdac751f3192d95 100644
--- a/third_party/sqlite/src/autoconf/README.first
+++ b/third_party/sqlite/src/autoconf/README.first
@@ -1,57 +1,11 @@
+This directory contains components use to build an autoconf-ready package
+of the SQLite amalgamation: sqlite-autoconf-30XXXXXX.tar.gz
-This file describes how to use the files in this directory to create a new
-version of the "autoconf-amalgamation" package.
-
-1. The following files should have executable permission:
-
- chmod 755 install-sh
- chmod 755 missing
- chmod 755 depcomp
- chmod 755 config.sub
- chmod 755 config.guess
-
-2. Copy new versions of the following SQLite files into this directory:
-
- sqlite3.c
- sqlite3.h
- sqlite3ext.h
- sqlite3.1
- sqlite3.pc.in
- shell.c
-
-3. Update the SQLite version number in the AC_INIT macro in file
- configure.ac:
-
- AC_INIT(sqlite, 3.6.3, http://www.sqlite.org)
-
-4. Run the following commands to push the version number change through
- to the generated files.
-
- aclocal
- autoconf
- automake
-
-5. Create the tclsqlite3.c file in the tea/generic directory. As follows:
-
- mkdir -p tea/generic
- echo "#ifdef USE_SYSTEM_SQLITE" > tea/generic/tclsqlite3.c
- echo "# include <sqlite3.h>" >> tea/generic/tclsqlite3.c
- echo "#else" >> tea/generic/tclsqlite3.c
- echo "#include \"../../sqlite3.c\"" >> tea/generic/tclsqlite3.c
- echo "#endif" >> tea/generic/tclsqlite3.c
- cat ../src/tclsqlite.c >> tea/generic/tclsqlite3.c
-
-6. Update the SQLite version in the AC_INIT macro in file tea/configure.in:
-
- AC_INIT([sqlite], [3.6.3])
-
-7. From the 'tea' directory, run the following commands:
-
- autoconf
- rm -rf autom4te.cache
-
-8. Run "./configure && make dist". This builds a distribution package
- named something like "sqlite-3.6.3.tar.gz". Rename to
- "sqlite-amalgamation-3.6.3.tar.gz" and use.
+To build the autoconf amalgamation, run from the top-level:
+ ./configure
+ make amalgamation-tarball
+The amalgamation-tarball target (also available in "main.mk") runs the
+script tool/mkautoconfamal.sh which does the work. Refer to that script
+for details.
« no previous file with comments | « third_party/sqlite/src/autoconf/Makefile.am ('k') | third_party/sqlite/src/autoconf/config.guess » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698