<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/sqlite, branch 3.10-stable</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/sqlite: security fix (CVE-2020-11655)</title>
<updated>2020-05-07T13:42:09+00:00</updated>
<author>
<name>Leonardo Arena</name>
<email>rnalrd@alpinelinux.org</email>
</author>
<published>2020-05-07T12:39:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=79233d80a2da2627e57d65211329b6042279e306'/>
<id>79233d80a2da2627e57d65211329b6042279e306</id>
<content type='text'>
ref #11508
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #11508
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: security fixes (CVE-2019-19242, CVE-2019-19244)</title>
<updated>2019-12-17T15:27:39+00:00</updated>
<author>
<name>Leonardo Arena</name>
<email>rnalrd@alpinelinux.org</email>
</author>
<published>2019-12-17T15:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=30233633ab19bac97b420f322771b5a8c4d92467'/>
<id>30233633ab19bac97b420f322771b5a8c4d92467</id>
<content type='text'>
ref #11015
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #11015
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: fix CVE-2019-16168</title>
<updated>2019-10-11T18:52:31+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-10-11T15:46:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=d5f87185a9e0878348a7b8340fbff4677e23d996'/>
<id>d5f87185a9e0878348a7b8340fbff4677e23d996</id>
<content type='text'>
ref #10868
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #10868
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: add CVE-2019-8457 to secfixes comment</title>
<updated>2019-06-05T16:21:17+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-06-05T15:53:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=7dc62470b3429e2373e0f00cf13129211debf12b'/>
<id>7dc62470b3429e2373e0f00cf13129211debf12b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: security upgrade to 3.28.0 CVE-2019-5018</title>
<updated>2019-05-27T06:38:14+00:00</updated>
<author>
<name>Andy Postnikov</name>
<email>apostnikov@gmail.com</email>
</author>
<published>2019-04-19T01:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=607e9fc9539e88afe11d42d6012d952ee178b2cf'/>
<id>607e9fc9539e88afe11d42d6012d952ee178b2cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: upgrade to 3.27.2</title>
<updated>2019-03-13T17:15:33+00:00</updated>
<author>
<name>TBK</name>
<email>tbk@jjtc.eu</email>
</author>
<published>2019-03-08T21:48:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=36ba698d6b61c48b8f2c8387c64b3a6190d3c06c'/>
<id>36ba698d6b61c48b8f2c8387c64b3a6190d3c06c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: Enabled FTS3</title>
<updated>2018-12-31T11:19:26+00:00</updated>
<author>
<name>Marian Buschsieweke</name>
<email>marian.buschsieweke@ovgu.de</email>
</author>
<published>2018-12-28T08:00:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=856c64b1dc1f9b8176c60e28808482f8503c4e98'/>
<id>856c64b1dc1f9b8176c60e28808482f8503c4e98</id>
<content type='text'>
SQLITE_ENABLE_FTS3 is already defined via `-DSQLITE_ENABLE_FTS3` in
`CFLAGS`, however this approach does not work (compile source below to
verify). Adding `--enable-fts3` as parameter did the trick. FTS3 is required
e.g. by Firefox.

	#include &lt;stdio.h&gt;
	#include "sqlite3.h"

	int main(int argc, char **argv){
		if (sqlite3_compileoption_used("SQLITE_ENABLE_FTS3"))
			puts("yes");
		else
			puts("no");

		return 0;
	}
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SQLITE_ENABLE_FTS3 is already defined via `-DSQLITE_ENABLE_FTS3` in
`CFLAGS`, however this approach does not work (compile source below to
verify). Adding `--enable-fts3` as parameter did the trick. FTS3 is required
e.g. by Firefox.

	#include &lt;stdio.h&gt;
	#include "sqlite3.h"

	int main(int argc, char **argv){
		if (sqlite3_compileoption_used("SQLITE_ENABLE_FTS3"))
			puts("yes");
		else
			puts("no");

		return 0;
	}
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: add check() and enable GeoPoly module</title>
<updated>2018-12-31T07:56:27+00:00</updated>
<author>
<name>Andy Postnikov</name>
<email>apostnikov@gmail.com</email>
</author>
<published>2018-09-16T08:44:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=0d54ca29debcb927176f0b6045bee3169a4acf18'/>
<id>0d54ca29debcb927176f0b6045bee3169a4acf18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: build with SQLITE_ENABLE_FTS3</title>
<updated>2018-12-26T09:09:52+00:00</updated>
<author>
<name>Leonardo Arena</name>
<email>rnalrd@alpinelinux.org</email>
</author>
<published>2018-12-26T09:09:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=90b0a27c0cc8621d3a1d25750f57a4708842fb45'/>
<id>90b0a27c0cc8621d3a1d25750f57a4708842fb45</id>
<content type='text'>
Required by firefox-esr-52.9.0

configure: error: System SQLite library is not compiled with SQLITE_ENABLE_FTS3.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Required by firefox-esr-52.9.0

configure: error: System SQLite library is not compiled with SQLITE_ENABLE_FTS3.
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: Update to 3.26.0</title>
<updated>2018-12-20T12:24:55+00:00</updated>
<author>
<name>Simon Frankenberger</name>
<email>simon@fraho.eu</email>
</author>
<published>2018-12-19T21:14:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=d931767d75b4f7ac952897f867142aab0f00ca41'/>
<id>d931767d75b4f7ac952897f867142aab0f00ca41</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
