Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Jun 2018 16:40:33 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r472263 - head/devel/libewf
Message-ID:  <201806121640.w5CGeXYT094607@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Tue Jun 12 16:40:32 2018
New Revision: 472263
URL: https://svnweb.freebsd.org/changeset/ports/472263

Log:
  Do not use ssl (EVP), this fixes build with OpenSSL 1.1
  
  PR:		228941

Modified:
  head/devel/libewf/Makefile

Modified: head/devel/libewf/Makefile
==============================================================================
--- head/devel/libewf/Makefile	Tue Jun 12 16:35:50 2018	(r472262)
+++ head/devel/libewf/Makefile	Tue Jun 12 16:40:32 2018	(r472263)
@@ -3,6 +3,7 @@
 
 PORTNAME=	libewf
 PORTVERSION=	20140803
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	https://github.com/libyal/libewf-legacy/releases/download/${PORTVERSION}/ \
 		LOCAL/antoine
@@ -13,18 +14,16 @@ COMMENT=	Library for support of the Expert Witness Com
 LICENSE=	LGPL3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_SSL=	openssl-devel
-BROKEN_SSL_REASON_openssl-devel=	field has incomplete type 'EVP_MD_CTX' (aka 'struct evp_md_ctx_st')
-
 LIB_DEPENDS=	libsmdev.so:devel/libsmdev \
 		libsmraw.so:devel/libsmraw \
 		libuuid.so:misc/e2fsprogs-libuuid
 
-USES=		fuse libtool pathfix pkgconfig python:2.7 ssl
+USES=		fuse libtool pathfix pkgconfig python:2.7
 USE_LDCONFIG=	yes
 
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--enable-python --with-libsmdev=${LOCALBASE} --with-libsmraw=${LOCALBASE} --with-libuuid=${LOCALBASE}
+CONFIGURE_ARGS=	--enable-python --with-libsmdev=${LOCALBASE} --with-libsmraw=${LOCALBASE} \
+		--with-libuuid=${LOCALBASE} --with-openssl=no
 INSTALL_TARGET=	install-strip
 
 OPTIONS_DEFINE=	NLS



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806121640.w5CGeXYT094607>