svn commit: r525627 - head/print/brlaser

Mark Linimon linimon at FreeBSD.org
Sun Feb 9 06:02:49 UTC 2020


Author: linimon
Date: Sun Feb  9 06:02:49 2020
New Revision: 525627
URL: https://svnweb.freebsd.org/changeset/ports/525627

Log:
  Fix build on GCC-based systems by adding compiler:c++11-lang to USES:
  
    CMake Error in CMakeLists.txt:
    Target "test_line" requires the language dialect "CXX11" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/print/brlaser/Makefile

Modified: head/print/brlaser/Makefile
==============================================================================
--- head/print/brlaser/Makefile	Sun Feb  9 06:01:48 2020	(r525626)
+++ head/print/brlaser/Makefile	Sun Feb  9 06:02:49 2020	(r525627)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libcups.so:print/cups \
 		libcupsimage.so:print/cups
 
-USES=		cmake:insource,noninja
+USES=		cmake:insource,noninja compiler:c++11-lang
 
 USE_GITHUB=	yes
 


More information about the svn-ports-head mailing list