svn commit: r402877 - head/devel/thrift-cpp

John Marino freebsd.contact at marino.st
Thu Dec 3 15:02:47 UTC 2015


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


More information about the svn-ports-head mailing list