svn commit: r506441 - head/sysutils/ipmitool

Eugene Grosbein eugen at FreeBSD.org
Fri Jul 12 07:56:37 UTC 2019


Author: eugen
Date: Fri Jul 12 07:56:36 2019
New Revision: 506441
URL: https://svnweb.freebsd.org/changeset/ports/506441

Log:
  sysutils/ipmitool: make it work for FreeBSD 11 with openssl111
  
  Apply extra patch needed for openssl111 also for users of FreeBSD 11
  with DEFAULT_VERSIONS+=ssl=openssl111 in the /etc/make.conf

Modified:
  head/sysutils/ipmitool/Makefile

Modified: head/sysutils/ipmitool/Makefile
==============================================================================
--- head/sysutils/ipmitool/Makefile	Fri Jul 12 07:35:32 2019	(r506440)
+++ head/sysutils/ipmitool/Makefile	Fri Jul 12 07:56:36 2019	(r506441)
@@ -13,8 +13,6 @@ COMMENT=	CLI to manage IPMI systems
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_SSL=	openssl111
-
 USES=		cpe tar:bzip2 gmake readline ssl
 CPE_VENDOR=	sun
 GNU_CONFIGURE=	yes
@@ -51,7 +49,7 @@ FREEIPMI_CONFIGURE_ENABLE=	intf-free
 
 .include <bsd.port.options.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200085
+.if (${OPSYS} == FreeBSD && ${OSVERSION} >= 1200085) || ${SSL_DEFAULT} == openssl111
 EXTRA_PATCHES+=	${PATCHDIR}/extra-patch-src_plugins_lanplus_lanplus__crypt__impl.c
 .endif
 


More information about the svn-ports-head mailing list