<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/4643df2c3591ab29da5010495cf806efd5796425">https://github.com/macports/macports-ports/commit/4643df2c3591ab29da5010495cf806efd5796425</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 4643df2c359 pstoedit: requires c++14
</span>4643df2c359 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 4643df2c3591ab29da5010495cf806efd5796425
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Tue Jun 23 23:36:57 2020 -0700

<span style='display:block; white-space:pre;color:#404040;'>    pstoedit: requires c++14
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    thanks to @ballapete for the fix
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    although clangs up to at least clang-9.0 will let this
</span><span style='display:block; white-space:pre;color:#404040;'>    through with a warning, gcc will not, and clangs are
</span><span style='display:block; white-space:pre;color:#404040;'>    getting steadily stricter as well
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    closes: https://trac.macports.org/ticket/59931
</span>---
 graphics/pstoedit/Portfile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/graphics/pstoedit/Portfile b/graphics/pstoedit/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index db2b0bbb533..d5622e10dca 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/graphics/pstoedit/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/graphics/pstoedit/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -43,8 +43,12 @@ configure.args      --without-emf \
</span>                     --without-swf
 
 configure.cppflags-append   -Wno-long-long
<span style='display:block; white-space:pre;background:#ffe0e0;'>-compiler.cxx_standard   2011
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-configure.cxxflags-append   -std=c++11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# drvpdf.cpp:46:14: warning: variable declaration in a constexpr function is a C++14 extension [-Wc++14-extensions]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# although clangs up to clang-9 let this through with a warning,
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# gcc generates an error and will not build unless proper std=c++14 is set
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.cxx_standard   2014
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+configure.cxxflags-append   -std=c++14
</span> 
 use_parallel_build  no
 
</pre><pre style='margin:0'>

</pre>