Skip to content

Commit

Permalink
Use Xcode 10 for macOS 10.14
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandesign authored and neverpanic committed Jun 8, 2018
1 parent 15cb584 commit 0e483b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -2833,7 +2833,7 @@ $as_echo "$as_me: WARNING: This version of Xcode Tools is out of date" >&2;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Please consider upgrading as some ports fail compiling" >&5
$as_echo "$as_me: WARNING: Please consider upgrading as some ports fail compiling" >&2;}
;;
2.*|3.*|4.*|5.*|6.*|7.*|8.*|9.*)
2.*|3.*|4.*|5.*|6.*|7.*|8.*|9.*|10.*)
;;
*)
;;
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -94,7 +94,7 @@ case "$XCODE_VERSION" in
AC_MSG_WARN([This version of Xcode Tools is out of date])
AC_MSG_WARN([Please consider upgrading as some ports fail compiling])
;;
2.*|3.*|4.*|5.*|6.*|7.*|8.*|9.*)
2.*|3.*|4.*|5.*|6.*|7.*|8.*|9.*|10.*)
dnl Supported version
;;
*)
Expand Down
11 changes: 8 additions & 3 deletions src/port1.0/portutil.tcl
Expand Up @@ -3245,10 +3245,15 @@ proc _check_xcode_version {} {
set ok 9.0
set rec 9.3
}
10.14 {
set min 10.0
set ok 10.0
set rec 10.0
}
default {
set min 9.0
set ok 9.0
set rec 9.3
set min 10.0
set ok 10.0
set rec 10.0
}
}
if {$xcodeversion eq "none"} {
Expand Down

0 comments on commit 0e483b2

Please sign in to comment.