svn commit: r551703 - head/sysutils/edid-decode
Piotr Kubaj
pkubaj at FreeBSD.org
Thu Oct 8 12:54:04 UTC 2020
Author: pkubaj
Date: Thu Oct 8 12:54:04 2020
New Revision: 551703
URL: https://svnweb.freebsd.org/changeset/ports/551703
Log:
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'
MFH: 2020Q4 (fix build blanket)
Modified:
head/sysutils/edid-decode/Makefile
Modified: head/sysutils/edid-decode/Makefile
==============================================================================
--- head/sysutils/edid-decode/Makefile Thu Oct 8 12:13:10 2020 (r551702)
+++ head/sysutils/edid-decode/Makefile Thu Oct 8 12:54:04 2020 (r551703)
@@ -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
More information about the svn-ports-all
mailing list