diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2019-01-03 18:41:18 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2019-01-03 18:41:18 +0000 |
commit | f4a85e52201456f4ea1fe4118e3d32d8290e8240 (patch) | |
tree | d53337cc7fb83c575bb000188e3101044ae7dcaf /net/netatalk3 | |
parent | 594990af13de5951a926bfd4b51fc8435bb892fb (diff) |
Notes
Diffstat (limited to 'net/netatalk3')
-rw-r--r-- | net/netatalk3/files/patch-etc_uams_openssl__compat.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/netatalk3/files/patch-etc_uams_openssl__compat.h b/net/netatalk3/files/patch-etc_uams_openssl__compat.h new file mode 100644 index 000000000000..0fa409015f32 --- /dev/null +++ b/net/netatalk3/files/patch-etc_uams_openssl__compat.h @@ -0,0 +1,11 @@ +--- etc/uams/openssl_compat.h.orig 2019-01-03 18:36:43.123024000 +0000 ++++ etc/uams/openssl_compat.h 2019-01-03 18:37:02.918877000 +0000 +@@ -11,7 +11,7 @@ http://www.gnu.org/licenses/old-licenses + #ifndef OPENSSL_COMPAT_H + #define OPENSSL_COMPAT_H + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL) + inline static int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g) + { + /* If the fields p and g in d are NULL, the corresponding input |