<pre style='margin:0'>
Jeremy Huddleston Sequoia (jeremyhu) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/69c745b2d71ac333d21da953497fd6ae903ce242">https://github.com/macports/macports-base/commit/69c745b2d71ac333d21da953497fd6ae903ce242</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 69c745b2d71ac333d21da953497fd6ae903ce242
</span>Author: Jeremy Huddleston Sequoia <jeremyhu@macports.org>
AuthorDate: Mon Sep 4 15:19:04 2017 -0700

<span style='display:block; white-space:pre;color:#404040;'>    portconfigure: Don't fall back on macosx if we are unable to find an appropriate versioned SDK
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@macports.org>
</span>---
 src/port1.0/portconfigure.tcl | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portconfigure.tcl b/src/port1.0/portconfigure.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 4b9f02e..a93e05d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portconfigure.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portconfigure.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -419,10 +419,14 @@ proc portconfigure::configure_get_sdkroot {sdk_version} {
</span>         return $sdk
     }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    if {![catch {set sdk [exec xcrun --sdk macosx --show-sdk-path 2> /dev/null]}]} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        ui_warn "Unable to determine location of the macOS ${sdk_version} SDK.  Using the default macOS SDK."
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        return $sdk
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # TODO: Support falling back to "macosx" if it is present?
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #       This leads to problems when it is newer than the base OS because many OSS assume that
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #       the SDK version matches the deployment target, so they unconditionally try to use
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #       symbols that are only available on newer OS versions..
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #if {![catch {set sdk [exec xcrun --sdk macosx --show-sdk-path 2> /dev/null]}]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #    ui_warn "Unable to determine location of the macOS ${sdk_version} SDK.  Using the default macOS SDK."
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #    return $sdk
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    #}
</span> 
     ui_warn "Unable to determine location of a macOS SDK.  Compilation will likely fail."
 
</pre><pre style='margin:0'>

</pre>