<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/1198b8388d9d673346a142cde517f0b6dc1029e9">https://github.com/macports/macports-ports/commit/1198b8388d9d673346a142cde517f0b6dc1029e9</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 1198b8388d9 jemalloc: remove incorrect cxx flags
</span>1198b8388d9 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 1198b8388d9d673346a142cde517f0b6dc1029e9
</span>Author: Ken <21211439+kencu@users.noreply.github.com>
AuthorDate: Sat Jun 18 17:09:47 2022 -0700

<span style='display:block; white-space:pre;color:#404040;'>    jemalloc: remove incorrect cxx flags
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    std=c++11 actually disables the cxx portions of jemalloc, as they require c++14 at a minimum and default to c++17 if available
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    -latomic is incorrect on all builds that don't use gcc as the compiler, which is almost all builds on macports
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    forcing -stdlib=libstdc++ is incorrect on all builds that don't use gcc as the compiler, which is almost all builds on macports
</span>---
 devel/jemalloc/Portfile | 3 ---
 1 file changed, 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/jemalloc/Portfile b/devel/jemalloc/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 09829d381bf..4ae228a0ac1 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/jemalloc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/jemalloc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -31,9 +31,6 @@ configure.universal_args-delete --disable-dependency-tracking
</span> 
 configure.args-append --with-jemalloc-prefix=
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-configure.cxxflags-append \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                    -std=c++11 -stdlib=libstdc++ -latomic
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> # provide a compatibility symlink with the older name
 post-destroot {
     ln -s jeprof ${destroot}${prefix}/bin/${name}-prof
</pre><pre style='margin:0'>

</pre>