summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-05-01 00:16:07 +0100
committerSam James <sam@gentoo.org>2021-05-01 00:27:27 +0100
commit1609f7769eceac8ce4c5e03d957faaa6b6901ff9 (patch)
tree504a780932fcc75407e764c478e6ab318b276f60
parentdev-python/pyopenssl: drop obsolete LibreSSL patch (diff)
downloadgentoo-1609f7769eceac8ce4c5e03d957faaa6b6901ff9.tar.gz
gentoo-1609f7769eceac8ce4c5e03d957faaa6b6901ff9.tar.bz2
gentoo-1609f7769eceac8ce4c5e03d957faaa6b6901ff9.zip
net-misc/ptpd: drop obsolete LibreSSL patch
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--net-misc/ptpd/files/ptpd-2.3.1-fix-libressl-compatibility.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/ptpd/files/ptpd-2.3.1-fix-libressl-compatibility.patch b/net-misc/ptpd/files/ptpd-2.3.1-fix-libressl-compatibility.patch
deleted file mode 100644
index 4fa25797ff06..000000000000
--- a/net-misc/ptpd/files/ptpd-2.3.1-fix-libressl-compatibility.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -urN old/src/dep/ntpengine/ntp_isc_md5.c new/src/dep/ntpengine/ntp_isc_md5.c
---- old/src/dep/ntpengine/ntp_isc_md5.c 2015-06-29 17:13:29.000000000 +0200
-+++ new/src/dep/ntpengine/ntp_isc_md5.c 2018-09-15 22:56:18.469044902 +0200
-@@ -262,7 +262,7 @@
- {
- u_char digest[64];
- u_int len;
-- EVP_MD_CTX ctx;
-+ PTPD_EVP_MD_CTX ctx;
- pkt[length / 4] = htonl(keyid);
- EVP_DigestInit(&ctx);
- EVP_DigestUpdate(&ctx, (u_char *)key, (u_int)strlen(key));
-diff -urN old/src/dep/ntpengine/ntp_isc_md5.h new/src/dep/ntpengine/ntp_isc_md5.h
---- old/src/dep/ntpengine/ntp_isc_md5.h 2015-06-29 17:13:29.000000000 +0200
-+++ new/src/dep/ntpengine/ntp_isc_md5.h 2018-09-15 22:56:11.852020732 +0200
-@@ -80,7 +80,7 @@
- # define MD5Init(c) isc_md5_init(c)
- # define MD5Update(c, p, s) isc_md5_update(c, p, s)
- # define MD5Final(d, c) isc_md5_final((c), (d)) /* swapped */
-- typedef MD5_CTX EVP_MD_CTX;
-+ typedef MD5_CTX PTPD_EVP_MD_CTX;
- # define EVP_DigestInit(c) MD5Init(c)
- # define EVP_DigestUpdate(c, p, s) MD5Update(c, p, s)
- # define EVP_DigestFinal(c, d, pdl) \