Index: head/devel/qca/Makefile =================================================================== --- head/devel/qca/Makefile (revision 392049) +++ head/devel/qca/Makefile (revision 392050) @@ -1,38 +1,38 @@ # Created by: Vsevolod Stakhov # $FreeBSD$ PORTNAME= qca PORTVERSION= 2.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://delta.affinix.com/download/qca/2.0/ MAINTAINER= kde@FreeBSD.org COMMENT= Cross-platform crypto API for Qt BUILD_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss USES= cmake:outsource CMAKE_ARGS= -DBUILD_PLUGINS=none -DBUILD_TESTS=no -DQT4_BUILD=yes \ -DPKGCONFIG_INSTALL_PREFIX=${PREFIX}/libdata/pkgconfig \ -DQCA_FEATURE_INSTALL_DIR=${QT_MKSPECDIR}/features \ -DQCA_MAN_INSTALL_DIR=${MANPREFIX}/man CMAKE_ENV= QC_CERTSTORE_PATH=${LOCALBASE}/share/certs/ca-root-nss.crt USE_LDCONFIG= yes USE_QT4= corelib moc_build qmake_build rcc_build OPTIONS_DEFINE= GNUPG OPENSSL SASL OPTIONS_DEFAULT=GNUPG OPENSSL OPTIONS_SUB= yes GNUPG_CMAKE_ON= -DWITH_gnupg_PLUGIN=yes GNUPG_RUN_DEPENDS= gpg2:${PORTSDIR}/security/gnupg OPENSSL_CMAKE_ON= -DWITH_ossl_PLUGIN=yes OPENSSL_USE= OPENSSL=yes SASL_CMAKE_ON= -DWITH_cyrus-sasl_PLUGIN=yes SASL_LIB_DEPENDS= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .include Index: head/devel/qca/files/patch-git_593de685 =================================================================== --- head/devel/qca/files/patch-git_593de685 (nonexistent) +++ head/devel/qca/files/patch-git_593de685 (revision 392050) @@ -0,0 +1,25 @@ +commit 593de6855a4f4dc26cface3e96de8889f90cb4bb +Author: Heiko Becker +Date: Mon Oct 20 12:46:34 2014 +0000 + + Fix build with libressl + + libressl removed the SSL Compression functionality (which might + be considered insecure) and thus also compress_meth. + SSL_SESSION_get_compress_id is just a stub in libressl which always + returns 0 and in openssl it returns compress_meth. + + REVIEW: 121107 + +--- plugins/qca-ossl/qca-ossl.cpp ++++ plugins/qca-ossl/qca-ossl.cpp +@@ -5805,7 +5805,7 @@ + { + SessionInfo sessInfo; + +- sessInfo.isCompressed = (0 != ssl->session->compress_meth); ++ sessInfo.isCompressed = (0 != SSL_SESSION_get_compress_id(ssl->session)); + + if (ssl->version == TLS1_VERSION) + sessInfo.version = TLS::TLS_v1; + Property changes on: head/devel/qca/files/patch-git_593de685 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property