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

</pre>
<p><a href="https://github.com/macports/macports-base/commit/29c42b39613a23d11c88b0b3d9a76d8eb5789ff4">https://github.com/macports/macports-base/commit/29c42b39613a23d11c88b0b3d9a76d8eb5789ff4</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/release-2.5 by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 29c42b3  portutil: Only warn about system headers not being installed with Xcode older than 9.3.
</span>29c42b3 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 29c42b39613a23d11c88b0b3d9a76d8eb5789ff4
</span>Author: Jeremy Huddleston Sequoia <jeremyhu@macports.org>
AuthorDate: Mon Jul 23 10:19:36 2018 -0700

<span style='display:block; white-space:pre;color:#404040;'>    portutil: Only warn about system headers not being installed with Xcode older than 9.3.
</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><span style='display:block; white-space:pre;color:#404040;'>    (cherry picked from commit 3da14a607595c0526843ae705a581d02ac735824)
</span>---
 src/port1.0/portutil.tcl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portutil.tcl b/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index cd4598c..b7268d0 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portutil.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -3281,8 +3281,7 @@ proc _check_xcode_version {} {
</span>             }
 
             # Check whether /usr/include and /usr/bin/make exist and tell users to install the command line tools, if they don't
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            if {   ![file isdirectory [file join $cltpath usr include]]
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                || ![file executable  [file join $cltpath usr bin make]]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            if {[vercmp $xcodeversion 9.3] < 0 && (![file isdirectory [file join $cltpath usr include]] || ![file executable  [file join $cltpath usr bin make]])} {
</span>                 ui_warn "System headers do not appear to be installed. Most ports should build correctly, but if you experience problems due to a port depending on system headers, please file a ticket at https://trac.macports.org."
                 if {[vercmp $macosx_version 10.9] >= 0} {
                     ui_warn "You can install them as part of the Xcode Command Line Tools package by running `xcode-select --install'."
</pre><pre style='margin:0'>

</pre>