Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Oct 2018 19:19:07 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482615 - head/security/d0_blind_id
Message-ID:  <201810201919.w9KJJ72b066914@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sat Oct 20 19:19:06 2018
New Revision: 482615
URL: https://svnweb.freebsd.org/changeset/ports/482615

Log:
  security/d0_blind_id: unbreak with OpenSSL 1.1.x
  
  checking for library containing BN_init... no
  configure: error: OpenSSL not found, see http://www.openssl.org/, or try --without-openssl
  ===>  Script "configure" failed unexpectedly.
  
  d0_bignum-openssl.c:58:9: error: field has incomplete type 'BIGNUM' (aka 'struct bignum_st')
          BIGNUM z;
                 ^
  /usr/include/openssl/ossl_typ.h:80:16: note: forward declaration of 'struct bignum_st'
  typedef struct bignum_st BIGNUM;
                 ^
  
  Reported by:	pkg-fallout

Modified:
  head/security/d0_blind_id/Makefile   (contents, props changed)

Modified: head/security/d0_blind_id/Makefile
==============================================================================
--- head/security/d0_blind_id/Makefile	Sat Oct 20 18:36:24 2018	(r482614)
+++ head/security/d0_blind_id/Makefile	Sat Oct 20 19:19:06 2018	(r482615)
@@ -3,7 +3,7 @@
 PORTNAME=	d0_blind_id
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	security devel
 
 MAINTAINER=	freebsd@jonathanprice.org
@@ -12,15 +12,14 @@ COMMENT=	Crypto library
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+LIB_DEPENDS=	libgmp.so:math/gmp
+
 USE_GITHUB=	yes
 GH_ACCOUNT=	divVerent
 
-USES=		autoreconf libtool pathfix ssl
+USES=		autoreconf libtool localbase pathfix
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--with-openssl
 USE_LDCONFIG=	yes
-CFLAGS+=	-I${OPENSSLINC}
-LDFLAGS+=	-L${OPENSSLLIB}
 
 post-install:
 	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.0



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