<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/libs/libmariadb/patches, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2026-01-25T12:53:51Z</updated>
<entry>
<title>libmariadb: update to 3.4.8</title>
<updated>2026-01-25T12:53:51Z</updated>
<author>
<name>John Audia</name>
</author>
<published>2025-12-30T11:54:41Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0e0c742d8175fa5656a34be2930a522a7f4422b8'/>
<id>urn:sha1:0e0c742d8175fa5656a34be2930a522a7f4422b8</id>
<content type='text'>
This release is needed in order to build against the 6.18 kernel.

Removed upstreamed: 020-gcc15.patch

Signed-off-by: John Audia &lt;therealgraysky@proton.me&gt;
</content>
</entry>
<entry>
<title>libmariadb: update to 3.4.5</title>
<updated>2025-07-18T14:19:22Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2025-07-13T04:05:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ac5377e03146d1e1f2a48bbbfb842070d2f0e1ae'/>
<id>urn:sha1:ac5377e03146d1e1f2a48bbbfb842070d2f0e1ae</id>
<content type='text'>
Backport upstream patch fixing compilation with GCC 15.

Remove upstreamed patch.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>libmariadb: update to 3.4.1</title>
<updated>2024-09-23T10:25:38Z</updated>
<author>
<name>Aleksey Vasilenko</name>
</author>
<published>2024-09-07T13:50:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0c7d79bed1c84f72a08ed92638670f2c9c915b49'/>
<id>urn:sha1:0c7d79bed1c84f72a08ed92638670f2c9c915b49</id>
<content type='text'>
- Remove a mirror with invalid certificate
- Manually rebase 010-link-to-libucontext.patch
- Add new 020-fix-ucontext-maybe-uninitialized.patch

Signed-off-by: Aleksey Vasilenko &lt;aleksey.vasilenko@gmail.com&gt;
</content>
</entry>
<entry>
<title>libmariadb: update to 3.1.23</title>
<updated>2024-02-07T21:49:38Z</updated>
<author>
<name>krant</name>
</author>
<published>2024-02-05T19:35:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5603261ca406d3bf99c0b41b7c4bd74024f2901d'/>
<id>urn:sha1:5603261ca406d3bf99c0b41b7c4bd74024f2901d</id>
<content type='text'>
- Replace dead source URL
- Rebase the patch
- Remove superfluous cmake option

Signed-off-by: krant &lt;aleksey.vasilenko@gmail.com&gt;
</content>
</entry>
<entry>
<title>libmariadb: Fix async api by linking to libucontext</title>
<updated>2023-09-24T01:46:01Z</updated>
<author>
<name>Volker Christian</name>
</author>
<published>2023-09-16T09:31:50Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=6748f95168660792a2162d8d35ce1ecf85f2d865'/>
<id>urn:sha1:6748f95168660792a2162d8d35ce1ecf85f2d865</id>
<content type='text'>
The asynchronous API of libmariadb uses cooperative multi threading
by using the system calls
  * makecontext
  * swapcontext
  * getcontext
  * setcontext
of the ucontext.h C-API.

Thus additionally link libmariadb to libucontext which is a library
providing these system calls on platforms not supporting them out of
the box - like musl based platforms.

Signed-off-by: Volker Christian &lt;me@vchrist.at&gt;
</content>
</entry>
<entry>
<title>libmariadb: update to 3.1.18</title>
<updated>2022-10-24T12:38:43Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-09-26T08:22:41Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ed7d38c145e4f20f4ff5e205fdfbd09423873be6'/>
<id>urn:sha1:ed7d38c145e4f20f4ff5e205fdfbd09423873be6</id>
<content type='text'>
The official download mirror does not host 3.1.12 anymore. Update to
newest version to solve the issue.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>libmariadb: fix compilation cmake issue</title>
<updated>2021-06-23T10:06:33Z</updated>
<author>
<name>Florian Eckert</name>
</author>
<published>2021-06-23T09:54:30Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=fd13c120e720a772cc10bb99c09e8f46b63a5050'/>
<id>urn:sha1:fd13c120e720a772cc10bb99c09e8f46b63a5050</id>
<content type='text'>
This patch fixes the compilation issue of the upstream Cmake file.
If this patch is not applied we get the following compilation error output.

CMake Error at cmake/ConnectorName.cmake:30 (ENDMACRO):
  Flow control statements are not properly nested.
Call Stack (most recent call first):
  CMakeLists.txt:423 (INCLUDE)

The blamed cmake/ConnectorName.cmake file gets fixed with this patch.

Signed-off-by: Florian Eckert &lt;fe@dev.tdt.de&gt;
</content>
</entry>
<entry>
<title>libmariadb: update to 3.8.10</title>
<updated>2020-10-15T02:42:54Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-10-15T02:25:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=6e60d97564925d87bfb71de191d4184c87fc21e1'/>
<id>urn:sha1:6e60d97564925d87bfb71de191d4184c87fc21e1</id>
<content type='text'>
Remove upstreamed patch.

Fixed license info.

Several whitespace changes.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>mariadb: move libmariadb into its own package</title>
<updated>2019-11-17T15:05:29Z</updated>
<author>
<name>Sebastian Kemper</name>
</author>
<published>2019-11-17T15:05:26Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=c1964dd8d2684e1f5d546124e1bff49057f4b282'/>
<id>urn:sha1:c1964dd8d2684e1f5d546124e1bff49057f4b282</id>
<content type='text'>
This way when only wanting the library nobody needs to download and
compile the server package, saving space and time. Also this way we can
avoid sudden SONAME bumps during a server upgrade.

Signed-off-by: Sebastian Kemper &lt;sebastian_ml@gmx.net&gt;
</content>
</entry>
</feed>
