From owner-svn-ports-all@freebsd.org Sat Sep 10 02:50:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58E0EBD418B; Sat, 10 Sep 2016 02:50:17 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27AB69E6; Sat, 10 Sep 2016 02:50:17 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8A2oGUD098053; Sat, 10 Sep 2016 02:50:16 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8A2oGPt098052; Sat, 10 Sep 2016 02:50:16 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609100250.u8A2oGPt098052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 10 Sep 2016 02:50:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421648 - head/devel/thrift-cpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Sep 2016 02:50:17 -0000 Author: marino Date: Sat Sep 10 02:50:16 2016 New Revision: 421648 URL: https://svnweb.freebsd.org/changeset/ports/421648 Log: devel/thrift-cpp: Fix SSL library support Approved by: SSL blanket Modified: head/devel/thrift-cpp/Makefile Modified: head/devel/thrift-cpp/Makefile ============================================================================== --- head/devel/thrift-cpp/Makefile Sat Sep 10 02:00:21 2016 (r421647) +++ head/devel/thrift-cpp/Makefile Sat Sep 10 02:50:16 2016 (r421648) @@ -18,12 +18,12 @@ DISTINFO_FILE= ${.CURDIR}/../thrift/dis LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libevent.so:devel/libevent2 -USES= autoreconf pkgconfig gmake compiler:c++11-lang libtool +USES= autoreconf pkgconfig gmake compiler:c++11-lang \ + libtool ssl GNU_CONFIGURE= yes USE_LDCONFIG= yes MAKE_JOBS_UNSAFE= yes PLIST_SUB= PORTVERSION="${THRIFT_PORTVERSION}" -USE_OPENSSL= yes OPTIONS_DEFINE= QT4 QT4_CONFIGURE_WITH= qt4 @@ -45,13 +45,15 @@ CONFIGURE_ARGS+= \ --without-ruby \ --without-go +LDFLAGS+= -L${OPENSSLLIB} +CFLAGS+= -I${OPENSSLINC} + .include -.if ${SSL_DEFAULT} == base && \ - ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015 +.if ${SSL_DEFAULT} == base # src/thrift/transport/TSSLSocket.cpp:147: error: 'TLSv1_1_method' was not declared in this scope # src/thrift/transport/TSSLSocket.cpp:149: error: 'TLSv1_2_method' was not declared in this scope -BROKEN= does not build with 9.x base OpenSSL +BROKEN_FreeBSD_9= does not build with 9.x base OpenSSL .endif .if ${COMPILER_TYPE} == clang