svn commit: r534252 - head/databases/cassandra-cpp-driver

Pietro Cerutti gahr at FreeBSD.org
Thu May 7 08:06:52 UTC 2020


Author: gahr
Date: Thu May  7 08:06:51 2020
New Revision: 534252
URL: https://svnweb.freebsd.org/changeset/ports/534252

Log:
  databases/cassandra-cpp-driver: fix build
  
  In the last commit I removed a patch that excluded -Werror from the compiler
  flags. It was building on amd64, but apparently it breaks on the cluster. This
  commit restores the removal of -Werror.

Modified:
  head/databases/cassandra-cpp-driver/Makefile

Modified: head/databases/cassandra-cpp-driver/Makefile
==============================================================================
--- head/databases/cassandra-cpp-driver/Makefile	Thu May  7 07:58:36 2020	(r534251)
+++ head/databases/cassandra-cpp-driver/Makefile	Thu May  7 08:06:51 2020	(r534252)
@@ -31,4 +31,7 @@ PLIST_FILES=	include/cassandra.h \
 		libdata/pkgconfig/cassandra.pc \
 		libdata/pkgconfig/cassandra_static.pc
 
+post-patch:
+	${REINPLACE_CMD} -e 's|-Werror||' ${WRKSRC}/src/CMakeLists.txt
+
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list