aboutsummaryrefslogtreecommitdiff
path: root/lib/libsqlite3
Commit message (Collapse)AuthorAgeFilesLines
* [PowerPC64LE] Pass our byte order to the sqlite3 build.Brandon Bergren2020-09-231-0/+4
| | | | | | | | | | | | | | | | | | | | Due to the sqlite3 endian detection code preferring to check platform defines instead of checking endian defines, it is necessary to manually set the endianness on PowerPC64LE. Unlike other bi-endian platforms, PowerPC64LE relies entirely on the generic endianness macros like __BYTE_ORDER__ and has no platform-specific define to denote little endian. Add -DSQLITE_BYTEORDER=1234 to the CFLAGS when building libsqlite3 on powerpc64le. Fixes runtime operation of sqlite on PowerPC64LE. Sponsored by: Tag1 Consulting, Inc. Notes: svn path=/head/; revision=366056
* Only set WARNS if not definedKyle Evans2020-09-111-1/+1
| | | | | | | | | | | | | This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week Notes: svn path=/head/; revision=365631
* Update Makefile.depend filesSimon J. Gerraty2019-12-111-1/+1
| | | | | | | | | | | | | Update a bunch of Makefile.depend files as a result of adding Makefile.depend.options files Reviewed by: bdrewery MFC after: 1 week Sponsored by: Juniper Networks Differential Revision: https://reviews.freebsd.org/D22494 Notes: svn path=/head/; revision=355617
* Disable FTS3, FTS4, and RTREE in bundled and private sqlite3.Cy Schubert2019-01-121-4/+1
| | | | | | | | | | Suggested by: delphij@ Reviewed by: delphij@ (for secteam@) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D18786 Notes: svn path=/head/; revision=342972
* Revert r333353 - FTS5 uses log(3) which currently breakes non-amd64 builds.Peter Wemm2018-05-081-1/+0
| | | | | | | Reported by: lwhsu Notes: svn path=/head/; revision=333358
* Update private sqlite from sqlite3-3.20.0 to sqlite3-3.23.1Peter Wemm2018-05-081-0/+1
| | | | Notes: svn path=/head/; revision=333353
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* [private] add libevent1 and sqlite3 include files for our private libraries.Adrian Chadd2017-03-271-0/+1
| | | | | | | | | | | | This, like including ucl private headers, is useful for writing new base system tools. Yes, anyone using these libraries shouldn't assume ABI compatibility. Reviewed by: bdrewery, bapt Differential Revision: https://reviews.freebsd.org/D10123 Notes: svn path=/head/; revision=316063
* Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | This implifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312478
* First pass through library packaging.Glen Barber2016-02-041-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295278
* META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.Bryan Drewery2015-11-251-1/+0
| | | | | | | | | | | This both avoids some dependencies on xinstall.host and allows bootstrapping on older releases to work due to lack of at least 'install -l' support. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=291307
* Move the USE_PREAD configuration knob out of the middle of the autoconfPeter Wemm2015-08-091-1/+1
| | | | | | | | generated ones. It is easy to mistake as an option that has gone away when it's actually a control that was explicitly turned on for FreeBSD. Notes: svn path=/head/; revision=286511
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+20
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge sync of headSimon J. Gerraty2015-05-271-0/+21
|/ | | | Notes: svn path=/projects/bmake/; revision=283595
* Fix typoBaptiste Daroussin2014-11-251-1/+1
| | | | Notes: svn path=/head/; revision=275025
* Convert libraries to use LIBADDBaptiste Daroussin2014-11-251-0/+1
| | | | | | | While here reduce a bit overlinking Notes: svn path=/head/; revision=275024
* Promote SQLite3 as a privatelib as it will also be used by mandocBaptiste Daroussin2014-11-221-0/+38
While here ensure sqlite3 is using pread(2) and enable the suppot for FTS4 Notes: svn path=/head/; revision=274885