Date: Thu, 3 Dec 2015 16:01:52 +0100 From: John Marino <freebsd.contact@marino.st> To: Raphael Kubo da Costa <rakuco@FreeBSD.org>, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r402877 - head/devel/thrift-cpp Message-ID: <56605960.7000007@marino.st> In-Reply-To: <201512031442.tB3EgVDP028011@repo.freebsd.org> References: <201512031442.tB3EgVDP028011@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On 12/3/2015 3:42 PM, Raphael Kubo da Costa wrote: > Author: rakuco > > 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 <bsd.port.pre.mk> > > +# 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 > You could have written this as "BROKEN_FreeBSD_9 = does not build with base OpenSSL" above the .include <bsd.port.pre.mk>. it's a bit cleaner. John
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?56605960.7000007>