Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Oct 2020 12:55:05 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r551704 - branches/2020Q4/sysutils/edid-decode
Message-ID:  <202010081255.098Ct5BP062011@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Thu Oct  8 12:55:05 2020
New Revision: 551704
URL: https://svnweb.freebsd.org/changeset/ports/551704

Log:
  MFH: r551703
  
  sysutils/edid-decode: fix build on GCC architectures
  
  Use C++11 compiler:
  edid-decode.cpp: In member function 'std::string edid_state::dtd_type(unsigned int)':
  edid-decode.cpp:195: error: 'to_string' is not a member of 'std'
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q4/sysutils/edid-decode/Makefile
Directory Properties:
  branches/2020Q4/   (props changed)

Modified: branches/2020Q4/sysutils/edid-decode/Makefile
==============================================================================
--- branches/2020Q4/sysutils/edid-decode/Makefile	Thu Oct  8 12:54:04 2020	(r551703)
+++ branches/2020Q4/sysutils/edid-decode/Makefile	Thu Oct  8 12:55:05 2020	(r551704)
@@ -11,7 +11,7 @@ COMMENT=	Decodes binary EDID information from monitors
 
 LICENSE=	MIT
 
-USES=		gmake tar:xz
+USES=		compiler:c++11-lang gmake tar:xz
 
 PLIST_FILES=	bin/edid-decode \
 		man/man1/edid-decode.1.gz



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