Date: Sun, 18 Nov 2018 20:02:49 +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: r485256 - head/net/rabbiteer Message-ID: <201811182002.wAIK2nBx097485@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Nov 18 20:02:49 2018 New Revision: 485256 URL: https://svnweb.freebsd.org/changeset/ports/485256 Log: 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 Modified: head/net/rabbiteer/Makefile (contents, props changed) Modified: head/net/rabbiteer/Makefile ============================================================================== --- head/net/rabbiteer/Makefile Sun Nov 18 20:02:40 2018 (r485255) +++ head/net/rabbiteer/Makefile Sun Nov 18 20:02:49 2018 (r485256) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811182002.wAIK2nBx097485>