1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/security/d0_blind_id/Makefile
Jan Beich 00e962038f 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
2018-10-20 19:19:06 +00:00

29 lines
545 B
Makefile

# $FreeBSD$
PORTNAME= d0_blind_id
DISTVERSIONPREFIX= v
DISTVERSION= 1.0
PORTREVISION= 2
CATEGORIES= security devel
MAINTAINER= freebsd@jonathanprice.org
COMMENT= Crypto library
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libgmp.so:math/gmp
USE_GITHUB= yes
GH_ACCOUNT= divVerent
USES= autoreconf libtool localbase pathfix
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.0
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libd0_rijndael.so.0
.include <bsd.port.mk>