Date: Thu, 16 May 2019 19:08:28 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501802 - head/sysutils/bareos-server Message-ID: <201905161908.x4GJ8Sjr062481@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905161908.x4GJ8Sjr062481>