svn commit: r501802 - head/sysutils/bareos-server

Piotr Kubaj pkubaj at FreeBSD.org
Thu May 16 19:08:29 UTC 2019


Author: pkubaj
Date: Thu May 16 19:08:28 2019
New Revision: 501802
URL: https://svnweb.freebsd.org/changeset/ports/501802

Log:
  sysutils/bareos-server: Fix build with GCC-based architectures
  
  Add USES=compiler:c++11-lang:
  CMake Error in core/src/plugins/filed/CMakeLists.txt:
    Target "bpipe-fd" requires the language dialect "CXX11" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/sysutils/bareos-server/Makefile

Modified: head/sysutils/bareos-server/Makefile
==============================================================================
--- head/sysutils/bareos-server/Makefile	Thu May 16 18:45:32 2019	(r501801)
+++ head/sysutils/bareos-server/Makefile	Thu May 16 19:08:28 2019	(r501802)
@@ -19,7 +19,8 @@ CONFLICTS?=	bacula17*-server-* bareos16-server-*
 LIB_DEPENDS+=	liblzo2.so:archivers/lzo2 \
 		libjansson.so:devel/jansson
 
-USES+=		cmake:insource pkgconfig readline:port shebangfix
+USES+=		cmake:insource compiler:c++11-lang pkgconfig readline:port \
+		shebangfix
 USE_GITHUB=	yes
 
 USERS=		bareos


More information about the svn-ports-all mailing list