You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
731 B

  1. From 507c394cfcf4edffc5e4450c5d737e545c26b857 Mon Sep 17 00:00:00 2001
  2. From: Daniel Engberg <daniel.engberg.lists@pyret.net>
  3. Date: Sat, 12 Dec 2020 18:56:38 +0100
  4. Subject: [PATCH] p11-kit/lists.c: Add stdint.h to fix compilation
  5. Add stdint.h otherwise compilation fails on FreeBSD 13-CURRENT with "use of undeclared identifier 'SIZE_MAX'"
  6. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
  7. ---
  8. p11-kit/lists.c | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/p11-kit/lists.c b/p11-kit/lists.c
  11. index 365a6d89..1d9062be 100644
  12. --- a/p11-kit/lists.c
  13. +++ b/p11-kit/lists.c
  14. @@ -39,6 +39,7 @@
  15. #include <assert.h>
  16. #include <ctype.h>
  17. +#include <stdint.h>
  18. #include <string.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>