Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 May 2020 08:06:51 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534252 - head/databases/cassandra-cpp-driver
Message-ID:  <202005070806.04786p2K006045@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005070806.04786p2K006045>