<pre style='margin:0'>
Joshua Root (jmroot) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/179c35a26e2dffe25e54552a39f9ba731ecca461">https://github.com/macports/macports-ports/commit/179c35a26e2dffe25e54552a39f9ba731ecca461</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 179c35a26e2 libtapi: avoid dependency cycle on old macOS
</span>179c35a26e2 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 179c35a26e2dffe25e54552a39f9ba731ecca461
</span>Author: Kirill A. Korinsky <kirill@korins.ky>
AuthorDate: Sun Nov 19 10:03:45 2023 +0000
<span style='display:block; white-space:pre;color:#404040;'> libtapi: avoid dependency cycle on old macOS
</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/68736
</span>---
devel/libtapi/Portfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/libtapi/Portfile b/devel/libtapi/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 00a84a0f4c3..296ffddb87e 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/libtapi/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/libtapi/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -80,9 +80,9 @@ if {(${os.platform} eq "darwin" && ${os.major} < 11) || [string match macports-g
</span> build.env DYLD_LIBRARY_PATH=${prefix}/libexec/llvm-$clangversion/lib/
}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# on macOS before 10.13 use clang-11-bootstrap
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-if {${os.platform} eq "darwin" && ${os.major} < 17 && ${configure.build_arch} ni [list ppc ppc64]} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# libtapi might be used as part of bootstrap process for clang, avoid dependency cycle
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# when MacPorts decided to use MacPorts clang by replacing compiler to clang-11-bootstrap.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {[string match macports-clang-* ${configure.compiler}]} {
</span> configure.compiler.add_deps no
depends_build-append port:clang-11-bootstrap
</pre><pre style='margin:0'>
</pre>