dqlite: update to 1.13.0
This commit is contained in:
parent
b752b4f862
commit
248263f955
|
@ -0,0 +1,31 @@
|
|||
commit dcc017a506a5d616d1ff511cfc590a7255f28de1
|
||||
Author: Cameron Nemo <cam@nohom.org>
|
||||
Date: Wed Dec 14 15:41:15 2022 -0800
|
||||
|
||||
vfs: fix include on musl
|
||||
|
||||
On musl, this fails to compile due to -Werror=cpp:
|
||||
|
||||
CC src/vfs.lo
|
||||
In file included from src/vfs.c:6:
|
||||
/usr/include/sys/fcntl.h:1:2: error: #warning redirecting incorrect #include <sys/fcntl.h> to <fcntl.h> [-Werror=cpp]
|
||||
1 | #warning redirecting incorrect #include <sys/fcntl.h> to <fcntl.h>
|
||||
| ^~~~~~~
|
||||
cc1: all warnings being treated as errors
|
||||
make: *** [Makefile:1314: src/vfs.lo] Error 1
|
||||
|
||||
Signed-off-by: Cameron Nemo <cam@nohom.org>
|
||||
|
||||
diff --git a/src/vfs.c b/src/vfs.c
|
||||
index 03df980..1760c62 100644
|
||||
--- a/src/vfs.c
|
||||
+++ b/src/vfs.c
|
||||
@@ -3,7 +3,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
-#include <sys/fcntl.h>
|
||||
+#include <fcntl.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'dqlite'
|
||||
pkgname=dqlite
|
||||
version=1.11.1
|
||||
version=1.13.0
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="pkg-config automake libtool"
|
||||
|
@ -9,8 +9,8 @@ short_desc="Distributed SQLite database using the Raft algorithm"
|
|||
maintainer="Cameron Nemo <cam@nohom.org>"
|
||||
license="custom:LGPL-3.0-only-linking-exception"
|
||||
homepage="https://github.com/canonical/dqlite"
|
||||
distfiles="${homepage}/archive/v${version}.tar.gz"
|
||||
checksum=f900b81b7ba66ba654c734f7fc9f01caf462408f3751f5357019db0c18d438b5
|
||||
distfiles="https://github.com/canonical/dqlite/archive/v${version}.tar.gz"
|
||||
checksum=14334a72389322d047576697f112da4cd6e1a5257d652d6162f195f2855fcd12
|
||||
|
||||
pre_configure() {
|
||||
autoreconf -i
|
||||
|
|
Loading…
Reference in New Issue