diff options
author | Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com> | 2021-07-22 20:19:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 20:19:33 +0200 |
commit | 743aafbeda5622b1e79d6207c32481976fd33d8f (patch) | |
tree | 2bf0878cd0617c798e2bf3e20c7010eec17cc539 | |
parent | c057dfb09c7027287c7862afab965a4cd95293a3 (diff) | |
parent | 5f78f5f8de3bae52e678f33153da73ce4f4633c5 (diff) |
Merge pull request #16185 from neheb/P1
p11-kit: update to 0.24.0
-rw-r--r-- | libs/p11-kit/Makefile | 6 | ||||
-rw-r--r-- | libs/p11-kit/patches/010-stdint.patch | 22 |
2 files changed, 3 insertions, 25 deletions
diff --git a/libs/p11-kit/Makefile b/libs/p11-kit/Makefile index 21c63ac19..bf5724144 100644 --- a/libs/p11-kit/Makefile +++ b/libs/p11-kit/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=p11-kit -PKG_VERSION:=0.23.22 -PKG_RELEASE:=1 +PKG_VERSION:=0.24.0 +PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/p11-glue/p11-kit/releases/download/$(PKG_VERSION) -PKG_HASH:=8a8f40153dd5a3f8e7c03e641f8db400133fb2a6a9ab2aee1b6d0cb0495ec6b6 +PKG_HASH:=81e6140584f635e4e956a1b93a32239acf3811ff5b2d3a5c6094e94e99d2c685 PKG_MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com> PKG_LICENSE:=BSD-3-Clause diff --git a/libs/p11-kit/patches/010-stdint.patch b/libs/p11-kit/patches/010-stdint.patch deleted file mode 100644 index 546c062b5..000000000 --- a/libs/p11-kit/patches/010-stdint.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 507c394cfcf4edffc5e4450c5d737e545c26b857 Mon Sep 17 00:00:00 2001 -From: Daniel Engberg <daniel.engberg.lists@pyret.net> -Date: Sat, 12 Dec 2020 18:56:38 +0100 -Subject: [PATCH] p11-kit/lists.c: Add stdint.h to fix compilation - -Add stdint.h otherwise compilation fails on FreeBSD 13-CURRENT with "use of undeclared identifier 'SIZE_MAX'" - -Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net> ---- - p11-kit/lists.c | 1 + - 1 file changed, 1 insertion(+) - ---- a/p11-kit/lists.c -+++ b/p11-kit/lists.c -@@ -39,6 +39,7 @@ - - #include <assert.h> - #include <ctype.h> -+#include <stdint.h> - #include <string.h> - #include <stdio.h> - #include <stdlib.h> |