mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
c73bf91d47
- Bug 1255763 - Remove OS_CONFIG, it is now unused. r=gps (8057d99501) - Bug 1255763 - Remove the MUST_UNDEF_HAVE_BOOLEAN_AFTER_INCLUDES define. r=gps (5168512b62) - Bug 1255763 - Remove the NEED_USLEEP_PROTOTYPE define. r=gps (7792c4146c) - bit of Bug 1241993 (af84a98319) - Bug 1242966 - Make services/crypto eslintable. r=rnewman (104214e999) - Bug 1109714 - Make the feed subscriber UI work in e10s r=mrbkap,jaws (512d76ddb7) - bug 1244743 - Replace MOZ_NATIVE_X with MOZ_SYSTEM_X. r=gps (f13b7803d6) - should be MOZ_SYSTEM_WEBP for system headers (a454950267) - bug 1248016 - make ASFILES rules work with .s/.asm, get rid of ASM_SUFFIX. r=mshal (f343285f4c) - Bug 1251210 - In configure.py, take AUTOCONF from mozconfig (mk_add_options) as well. r=ted (eb99ac2f2f) - Bug 1250297 - Make python configure output config.status instead of old-configure doing it. r=gps (07d0d106a6) - Bug 1251870 - Disable indexing of objdir on Windows; r=ted (ec6d697711) - Bug 1203266 - Add a list variant to mozbuild.util that allows pre-processing list items with a provided callable. r=gps (67aa583864) - Bug 1255763 - Remove OS_VERS and OS_VERSION. r=gps (f02b067dd6) - Bug 1255763 - Remove OS_RELEASE and OS_MINOR_RELEASE. r=gps (47ffc99e60) - Bug 1203266 - Read test manifests in the reader instead of the emitter to make them available earlier in the build. r=gps (6c5669dc5e) - Bug 1203266 - Allow reading reftest manifests from a provided finder. r=gps (965e98cc72) - Bug 1203266 - Remove uses of the emitter in files_info now that they're no longer needed. r=gps (16fb408e42) - Bug 1203266 - Optionally read manifestparser manifests with a Finder class. r=ahal (abfaec92b3) - bug 1255479 - add PYTHON_UNIT_TESTS to all-tests.json. r=nalexander (962d188b09) - Bug 1253076 - Handle the case defines are not present to avoid artifact build bustage when processing symbols files. r=glandium (e5889f8531) - Bug 1253431 part 1 - Add SDK_FILES to moz.build; r=gps (0ea7ddf34a) - Bug 1248950 - Move xpidl unit tests to moz.build; r=ted (a81002650d) - Bug 1253431 part 2 - Use SDK_FILES instead of INSTALL_TARGETS; r=gps (45df23e747) - Bug 1253431 part 3 - Move SDK_BINARY files in xpcom/idl-parser/xpidl to moz.build; r=gps (dcd29359eb) - Bug 1253431 part 4 - Convert header.py to a GENERATED_FILES script; r=gps (5982777320) - Bug 1253431 part 5 - Remove build/unix/Makefile.in; r=gps (1052a6922c) - Bug 1253431 part 6 - Remove SDK_BINARY from js/src; r=gps (41e952aa0e) - Bug 1253431 part 7 - Remove SDK_BINARY; r=gps (8cde74b1da) - Bug 1252301 - allow installing CONFIGURE_SUBST_FILES; r=glandium (a77cbb5dd3) - Bug 1253430 - Move most FinalTargetFiles into misc tier; r=glandium (d900eb240d) - Bug 1256033 - Allow GENERATED_FILES scripts to depend on other generated files; r=glandium (b1d37b7c0b) - Bug 1261283 - allow GENERATED_FILES to write to multiple outputs; r=glandium (99bb83c3ce) - Bug 1242632 - Remove TESTING_FILES from moz.build; r=glandium (bc636bd550) - Bug 1252093 - Move AUTOCFG_JS_EXPORTS to moz.build; r=ted (fa0dfa4ebf) - Bug 1255813 - Remove build system support for Solaris, HPUX and AIX. r=ted (2b69d2d3fb) - Bug 1253203 - Remove everything COMM_BUILD. r=nalexander,r=chmanchester (f883c27927) - Bug 1247836 - Add classes for python configure options handling. r=nalexander,r=chmanchester (1b95a0779f) - Bug 1247836 - Building blocks for python configure. r=nalexander,r=chmanchester (ea20b2d954) - Bug 1253203 - Use mozpath functions for sandboxed os.path in configure.py. r=nalexander,r=chmanchester (2a335fbc73)
This directory contains source code to
SQLite: An Embeddable SQL Database Engine
To compile the project, first create a directory in which to place
the build products. It is recommended, but not required, that the
build directory be separate from the source directory. Cd into the
build directory and then from the build directory run the configure
script found at the root of the source tree. Then run "make".
For example:
tar xzf sqlite.tar.gz ;# Unpack the source tree into "sqlite"
mkdir bld ;# Build will occur in a sibling directory
cd bld ;# Change to the build directory
../sqlite/configure ;# Run the configure script
make ;# Run the makefile.
make install ;# (Optional) Install the build products
The configure script uses autoconf 2.61 and libtool. If the configure
script does not work out for you, there is a generic makefile named
"Makefile.linux-gcc" in the top directory of the source tree that you
can copy and edit to suit your needs. Comments on the generic makefile
show what changes are needed.
The linux binaries on the website are created using the generic makefile,
not the configure script. The windows binaries on the website are created
using MinGW32 configured as a cross-compiler running under Linux. For
details, see the ./publish.sh script at the top-level of the source tree.
The developers do not use teh configure script.
SQLite does not require TCL to run, but a TCL installation is required
by the makefiles. SQLite contains a lot of generated code and TCL is
used to do much of that code generation. The makefile also requires
AWK.
Contacts:
http://www.sqlite.org/