Date: Fri, 11 May 2018 20:14:55 +0000 (UTC) From: Joe Marcus Clarke <marcus@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469690 - head/net/netatalk3/files Message-ID: <201805112014.w4BKEtJ5042403@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marcus Date: Fri May 11 20:14:54 2018 New Revision: 469690 URL: https://svnweb.freebsd.org/changeset/ports/469690 Log: Fix the build with libressl > 2.7.0. PR: 227860 Submitted by: brnrd Modified: head/net/netatalk3/files/patch-etc_uams_openssl__compat.h Modified: head/net/netatalk3/files/patch-etc_uams_openssl__compat.h ============================================================================== --- head/net/netatalk3/files/patch-etc_uams_openssl__compat.h Fri May 11 20:11:49 2018 (r469689) +++ head/net/netatalk3/files/patch-etc_uams_openssl__compat.h Fri May 11 20:14:54 2018 (r469690) @@ -5,7 +5,7 @@ #define OPENSSL_COMPAT_H -#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L) 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805112014.w4BKEtJ5042403>