From owner-svn-ports-all@freebsd.org Thu Dec 3 14:42:32 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 5936DA3F327; Thu, 3 Dec 2015 14:42:32 +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 0A21E1F21; Thu, 3 Dec 2015 14:42:31 +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 tB3EgVAt028012; Thu, 3 Dec 2015 14:42:31 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3EgVDP028011; Thu, 3 Dec 2015 14:42:31 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201512031442.tB3EgVDP028011@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 14:42:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402877 - 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 14:42:32 -0000 Author: rakuco Date: Thu Dec 3 14:42:30 2015 New Revision: 402877 URL: https://svnweb.freebsd.org/changeset/ports/402877 Log: IGNORE port on FreeBSD 9. The port has been broken on 9 since the 0.9.3 update: src/thrift/transport/TSSLSocket.cpp: In constructor 'apache::thrift::transport::SSLContext::SSLContext(const apache::thrift::transport::SSLProtocol&)': 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 Conditionally adding USE_OPENSSL=yes + WITH_OPENSSL_PORT=yes does not work out of the box: In file included from /usr/local/include/openssl/x509.h:107, from /usr/local/include/openssl/ssl.h:156, from src/thrift/transport/TSSLSocket.cpp:35: /usr/local/include/openssl/sha.h:184: error: ISO C++ does not support 'long long' /usr/local/include/openssl/sha.h:185: error: ISO C++ does not support 'long long' /usr/local/include/openssl/sha.h:187: error: ISO C++ does not support 'long long' Mark it IGNOREd for now until somebody comes up with a proper fix. Modified: head/devel/thrift-cpp/Makefile Modified: head/devel/thrift-cpp/Makefile ============================================================================== --- head/devel/thrift-cpp/Makefile Thu Dec 3 14:29:22 2015 (r402876) +++ head/devel/thrift-cpp/Makefile Thu Dec 3 14:42:30 2015 (r402877) @@ -46,6 +46,12 @@ CONFIGURE_ARGS+= \ .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 + .if ${COMPILER_TYPE} == clang USE_CXXSTD= c++11 .endif