From owner-svn-ports-all@freebsd.org Thu Dec 3 17:01:02 2015 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 05F0DA3F7F8; Thu, 3 Dec 2015 17:01:02 +0000 (UTC) (envelope-from rakuco@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 C30181967; Thu, 3 Dec 2015 17:01:01 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB3H10Dl069264; Thu, 3 Dec 2015 17:01:00 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3H10jV069263; Thu, 3 Dec 2015 17:01:00 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201512031701.tB3H10jV069263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 3 Dec 2015 17:01:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402888 - 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.20 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: Thu, 03 Dec 2015 17:01:02 -0000 Author: rakuco Date: Thu Dec 3 17:01:00 2015 New Revision: 402888 URL: https://svnweb.freebsd.org/changeset/ports/402888 Log: Use BROKEN_FreeBSD_9 instead of IGNORE and version checks after r402877. Not only does this simplify the Makefile, but BROKEN is the correct choice here ("BROKEN is reserved for ports that currently do not compile, install, deinstall, or run correctly. Use it for ports where the problem is believed to be temporary", says the Porter's Handbook). Suggested by marino@. Modified: head/devel/thrift-cpp/Makefile Modified: head/devel/thrift-cpp/Makefile ============================================================================== --- head/devel/thrift-cpp/Makefile Thu Dec 3 16:57:47 2015 (r402887) +++ head/devel/thrift-cpp/Makefile Thu Dec 3 17:01:00 2015 (r402888) @@ -44,13 +44,11 @@ CONFIGURE_ARGS+= \ --without-ruby \ --without-go -.include - # 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 -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015 -IGNORE= does not build with 9.x base OpenSSL -.endif +BROKEN_FreeBSD_9= does not build with 9.x base OpenSSL + +.include .if ${COMPILER_TYPE} == clang USE_CXXSTD= c++11