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

Raphael Kubo da Costa rakuco at FreeBSD.org
Thu Dec 3 17:01:02 UTC 2015


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 at .

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 <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
+BROKEN_FreeBSD_9=	does not build with 9.x base OpenSSL
+
+.include <bsd.port.pre.mk>
 
 .if ${COMPILER_TYPE} == clang
 USE_CXXSTD=	c++11


More information about the svn-ports-head mailing list