summaryrefslogtreecommitdiff
path: root/sys-auth/pam_u2f/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-07-28 10:27:13 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-07-28 10:27:13 +0100
commitf4fc10428424904caf2035cffc442195cb088b2c (patch)
tree72f320d5963e55586cfdeed2b14c72b8191b6327 /sys-auth/pam_u2f/files
parentfbd9734cedfe790955100b8e4ab3613457d77b1a (diff)
gentoo resync : 28.07.2021
Diffstat (limited to 'sys-auth/pam_u2f/files')
-rw-r--r--sys-auth/pam_u2f/files/pam_u2f-1.0.2-fix-Makefile.patch13
-rw-r--r--sys-auth/pam_u2f/files/pam_u2f-1.1.0-include-limits_h.patch41
2 files changed, 0 insertions, 54 deletions
diff --git a/sys-auth/pam_u2f/files/pam_u2f-1.0.2-fix-Makefile.patch b/sys-auth/pam_u2f/files/pam_u2f-1.0.2-fix-Makefile.patch
deleted file mode 100644
index a83597602d45..000000000000
--- a/sys-auth/pam_u2f/files/pam_u2f-1.0.2-fix-Makefile.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -34,8 +34,8 @@
- # Release
-
- install-exec-hook:
-- rm -f $(PAMDIR)/pam_u2f.la
-- chmod -f 644 $(PAMDIR)/pam_u2f.so || true
-+ rm -f $(DESTDIR)/$(PAMDIR)/pam_u2f.la
-+ chmod -f 644 $(DESTDIR)/$(PAMDIR)/pam_u2f.so || true
-
- indent:
- indent -kr -nut -i2 *.c *.h pamu2fcfg/*.c pamu2fcfg/*.h
diff --git a/sys-auth/pam_u2f/files/pam_u2f-1.1.0-include-limits_h.patch b/sys-auth/pam_u2f/files/pam_u2f-1.1.0-include-limits_h.patch
deleted file mode 100644
index edb959c7469d..000000000000
--- a/sys-auth/pam_u2f/files/pam_u2f-1.1.0-include-limits_h.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From d46b5ed35017b089c30dd21305ac2147fcfc24f0 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
- <congdanhqx@gmail.com>
-Date: Fri, 16 Oct 2020 06:49:08 +0700
-Subject: [PATCH] b64,util: always include limits.h
-
-UCHAR_MAX and INT_MAX are defined within limits.h
-
-Current codebase failed to be built in Linux with musl libc due to
-missing this inclusion.
-
-Fix it.
----
- b64.c | 1 +
- util.c | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/b64.c b/b64.c
-index 0649c1e..7788089 100644
---- a/b64.c
-+++ b/b64.c
-@@ -4,6 +4,7 @@
-
- #include <openssl/bio.h>
- #include <openssl/evp.h>
-+#include <limits.h>
- #include <stdint.h>
- #include <string.h>
-
-diff --git a/util.c b/util.c
-index fdae095..3ea1bd2 100644
---- a/util.c
-+++ b/util.c
-@@ -9,6 +9,7 @@
- #include <openssl/ec.h>
- #include <openssl/obj_mac.h>
-
-+#include <limits.h>
- #include <stdlib.h>
- #include <fcntl.h>
- #include <sys/stat.h>