diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-11-18 20:02:49 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-11-18 20:02:49 +0000 |
commit | 2a740e68423e7f54e4793a9bf1a33c9f0d5ed064 (patch) | |
tree | c8fc65393e2bffd00f818317ad37f372d1b3d9cb | |
parent | biology/igv: Update 2.4.15 -> 2.4.16 (diff) |
net/rabbiteer: mark BROKEN for OpenSSL 1.1
src/openssl_shim.c:132:7: error: incomplete definition of type 'struct dh_st'
dh->p = p;
~~^
/usr/include/openssl/ossl_typ.h:104:16: note: forward declaration of 'struct dh_st'
typedef struct dh_st DH;
^
src/openssl_shim.c:133:7: error: incomplete definition of type 'struct dh_st'
dh->g = g;
~~^
/usr/include/openssl/ossl_typ.h:104:16: note: forward declaration of 'struct dh_st'
typedef struct dh_st DH;
^
src/openssl_shim.c:134:7: error: incomplete definition of type 'struct dh_st'
dh->q = q;
~~^
/usr/include/openssl/ossl_typ.h:104:16: note: forward declaration of 'struct dh_st'
typedef struct dh_st DH;
^
src/openssl_shim.c:143:13: error: incomplete definition of type 'struct x509_st'
return x->cert_info ? x->cert_info->extensions : NULL;
~^
/usr/include/openssl/ossl_typ.h:120:16: note: forward declaration of 'struct x509_st'
typedef struct x509_st X509;
^
src/openssl_shim.c:143:28: error: incomplete definition of type 'struct x509_st'
return x->cert_info ? x->cert_info->extensions : NULL;
~^
/usr/include/openssl/ossl_typ.h:120:16: note: forward declaration of 'struct x509_st'
typedef struct x509_st X509;
^
Reported by: pkg-fallout
Notes
Notes:
svn path=/head/; revision=485256
-rw-r--r-- | net/rabbiteer/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/rabbiteer/Makefile b/net/rabbiteer/Makefile index da49252badb4..ec8acfc68f18 100644 --- a/net/rabbiteer/Makefile +++ b/net/rabbiteer/Makefile @@ -11,6 +11,11 @@ COMMENT= AMQP & RabbitMQ command-line tool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE-MIT +BROKEN_SSL= openssl111 +BROKEN_SSL_REASON_openssl111= https://github.com/Antti/rust-amqp/issues/43 +BROKEN_FreeBSD_12= ${BROKEN_SSL_REASON_openssl111} +BROKEN_FreeBSD_13= ${BROKEN_SSL_REASON_openssl111} + USES= cargo ssl USE_GITHUB= yes |