<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bceb5a2c - [PowerPC64LE] Pass our byte order to the sqlite3 build.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#bceb5a2c</link>
        <description>[PowerPC64LE] Pass our byte order to the sqlite3 build.Due to the sqlite3 endian detection code preferring to check platform definesinstead of checking endian defines, it is necessary to manually setthe endianness on PowerPC64LE.Unlike other bi-endian platforms, PowerPC64LE relies entirely on thegeneric endianness macros like __BYTE_ORDER__ and has no platform-specificdefine to denote little endian.Add -DSQLITE_BYTEORDER=1234 to the CFLAGS when building libsqlite3 onpowerpc64le.Fixes runtime operation of sqlite on PowerPC64LE.Sponsored by:	Tag1 Consulting, Inc.

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Wed, 23 Sep 2020 02:17:44 +0000</pubDate>
        <dc:creator>Brandon Bergren &lt;bdragon@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ecebb3cc - Only set WARNS if not defined</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#ecebb3cc</link>
        <description>Only set WARNS if not definedThis would allow interested parties to do experimental runs with anenvironment set appropriately to raise all the warnings throughout thebuild; e.g. env WARNS=6 NO_WERROR=yes buildworld.Not currently touching the numerous instances in ^/tools.MFC after:	1 week

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Fri, 11 Sep 2020 13:28:37 +0000</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f2aac055 - Disable FTS3, FTS4, and RTREE in bundled and private sqlite3.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#f2aac055</link>
        <description>Disable FTS3, FTS4, and RTREE in bundled and private sqlite3.Suggested by:	delphij@Reviewed by:	delphij@ (for secteam@)MFC after:	2 weeksDifferential Revision:	https://reviews.freebsd.org/D18786

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Sat, 12 Jan 2019 17:56:23 +0000</pubDate>
        <dc:creator>Cy Schubert &lt;cy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f43a4184 - Revert r333353 - FTS5 uses log(3) which currently breakes non-amd64 builds.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#f43a4184</link>
        <description>Revert r333353 - FTS5 uses log(3) which currently breakes non-amd64 builds.Reported by:	lwhsu

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Tue, 08 May 2018 06:09:49 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8bdc8245 - Update private sqlite from sqlite3-3.20.0 to sqlite3-3.23.1</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#8bdc8245</link>
        <description>Update private sqlite from sqlite3-3.20.0 to sqlite3-3.23.1

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Tue, 08 May 2018 04:51:47 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f906f202 - [private] add libevent1 and sqlite3 include files for our private libraries.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#f906f202</link>
        <description>[private] add libevent1 and sqlite3 include files for our private libraries.This, like including ucl private headers, is useful for writing new basesystem tools.  Yes, anyone using these libraries shouldn&apos;t assume ABIcompatibility.Reviewed by:	bdrewery, baptDifferential Revision:	https://reviews.freebsd.org/D10123

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Mon, 27 Mar 2017 22:34:43 +0000</pubDate>
        <dc:creator>Adrian Chadd &lt;adrian@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>94989169 - Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#94989169</link>
        <description>Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesThis implifies pathing in make/displayed outputMFC after:    3 weeksSponsored by: Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Fri, 20 Jan 2017 04:34:01 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a70cba95 - First pass through library packaging.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#a70cba95</link>
        <description>First pass through library packaging.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Thu, 04 Feb 2016 21:16:35 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3438e7b6 - Move the USE_PREAD configuration knob out of the middle of the autoconf</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#3438e7b6</link>
        <description>Move the USE_PREAD configuration knob out of the middle of the autoconfgenerated ones.  It is easy to mistake as an option that has gone awaywhen it&apos;s actually a control that was explicitly turned on for FreeBSD.

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Sun, 09 Aug 2015 05:54:53 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2c3e9170 - Fix typo</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#2c3e9170</link>
        <description>Fix typo

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 11:08:58 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6b129086 - Convert libraries to use LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#6b129086</link>
        <description>Convert libraries to use LIBADDWhile here reduce a bit overlinking

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 11:07:26 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>362492e5 - Promote SQLite3 as a privatelib as it will also be used by mandoc</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libsqlite3/Makefile#362492e5</link>
        <description>Promote SQLite3 as a privatelib as it will also be used by mandocWhile here ensure sqlite3 is using pread(2) and enable the suppot for FTS4

            List of files:
            /freebsd-14.2/lib/libsqlite3/Makefile</description>
        <pubDate>Sat, 22 Nov 2014 19:44:49 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
