summaryrefslogtreecommitdiff
path: root/lib/libsqlite3
AgeCommit message (Collapse)Author
2024-07-15Remove residual blank line at start of MakefileWarner Losh
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
2023-08-16Remove $FreeBSD$: one-line sh patternWarner Losh
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2020-09-23[PowerPC64LE] Pass our byte order to the sqlite3 build.Brandon Bergren
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
2020-09-11Only set WARNS if not definedKyle Evans
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
2019-12-11Update Makefile.depend filesSimon J. Gerraty
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
2019-01-12Disable FTS3, FTS4, and RTREE in bundled and private sqlite3.Cy Schubert
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
2018-05-08Revert r333353 - FTS5 uses log(3) which currently breakes non-amd64 builds.Peter Wemm
Reported by: lwhsu Notes: svn path=/head/; revision=333358
2018-05-08Update private sqlite from sqlite3-3.20.0 to sqlite3-3.23.1Peter Wemm
Notes: svn path=/head/; revision=333353
2017-10-31DIRDEPS_BUILD: Update dependencies.Bryan Drewery
Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
2017-03-27[private] add libevent1 and sqlite3 include files for our private libraries.Adrian Chadd
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
2017-01-20Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper
This implifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312478
2016-02-04First pass through library packaging.Glen Barber
Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295278
2015-11-25META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.Bryan Drewery
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
2015-08-09Move the USE_PREAD configuration knob out of the middle of the autoconfPeter Wemm
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
2015-06-13Add META_MODE support.Simon J. Gerraty
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
2015-06-08dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty
Notes: svn path=/projects/bmake/; revision=284172
2015-05-27Merge sync of headSimon J. Gerraty
Notes: svn path=/projects/bmake/; revision=283595
2014-11-25Fix typoBaptiste Daroussin
Notes: svn path=/head/; revision=275025
2014-11-25Convert libraries to use LIBADDBaptiste Daroussin
While here reduce a bit overlinking Notes: svn path=/head/; revision=275024
2014-11-22Promote SQLite3 as a privatelib as it will also be used by mandocBaptiste Daroussin
While here ensure sqlite3 is using pread(2) and enable the suppot for FTS4 Notes: svn path=/head/; revision=274885