<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/6803f91e57e53f783dcf333ffdfb113cf5cb9634">https://github.com/macports/macports-ports/commit/6803f91e57e53f783dcf333ffdfb113cf5cb9634</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 6803f91e57e openjdk8: don't limit max Xcode version
</span>6803f91e57e is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 6803f91e57e53f783dcf333ffdfb113cf5cb9634
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Mon Jan 15 22:56:35 2024 +1100

<span style='display:block; white-space:pre;color:#404040;'>    openjdk8: don't limit max Xcode version
</span>---
 java/openjdk8/files/0002-Support-XCode-3-14.patch | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/java/openjdk8/files/0002-Support-XCode-3-14.patch b/java/openjdk8/files/0002-Support-XCode-3-14.patch
</span><span style='display:block; white-space:pre;color:#808080;'>index 468edee11da..410a60030bd 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/java/openjdk8/files/0002-Support-XCode-3-14.patch
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/java/openjdk8/files/0002-Support-XCode-3-14.patch
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -12,8 +12,8 @@ Co-authored-by: usersxx <97012123+usersxx@users.noreply.github.com>
</span>      XC_VERSION_PARTS=( ${XCODE_VERSION//./ } )
 -    if test "${XC_VERSION_PARTS[0]}" != "6" -a "${XC_VERSION_PARTS[0]}" != "9" -a "${XC_VERSION_PARTS[0]}" != "10" -a "${XC_VERSION_PARTS[0]}" != "11" -a "${XC_VERSION_PARTS[0]}" != "12" ; then
 -      as_fn_error $? "Xcode 6, 9-12 is required to build JDK 8, the version found was $XCODE_VERSION. Use --with-xcode-path to specify the location of Xcode or make Xcode active by using xcode-select." "$LINENO" 5
<span style='display:block; white-space:pre;background:#ffe0e0;'>-+    if test "${XC_VERSION_PARTS[0]}" != "3" -a "${XC_VERSION_PARTS[0]}" != "4" -a "${XC_VERSION_PARTS[0]}" != "5" -a "${XC_VERSION_PARTS[0]}" != "6" -a "${XC_VERSION_PARTS[0]}" != "7" -a "${XC_VERSION_PARTS[0]}" != "8" -a "${XC_VERSION_PARTS[0]}" != "9" -a "${XC_VERSION_PARTS[0]}" != "10" -a "${XC_VERSION_PARTS[0]}" != "11" -a "${XC_VERSION_PARTS[0]}" != "12" -a "${XC_VERSION_PARTS[0]}" != "13"  -a "${XC_VERSION_PARTS[0]}" != "14" ; then
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-+      as_fn_error $? "Xcode 3-14 is required to build JDK 8, the version found was $XCODE_VERSION. Use --with-xcode-path to specify the location of Xcode or make Xcode active by using xcode-select." "$LINENO" 5
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>++    if test "${XC_VERSION_PARTS[0]}" -lt "3" ; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>++      as_fn_error $? "Xcode 3+ is required to build JDK 8, the version found was $XCODE_VERSION. Use --with-xcode-path to specify the location of Xcode or make Xcode active by using xcode-select." "$LINENO" 5
</span>      fi
  
      # Some versions of Xcode command line tools install gcc and g++ as symlinks to
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -25,8 +25,8 @@ Co-authored-by: usersxx <97012123+usersxx@users.noreply.github.com>
</span>      XC_VERSION_PARTS=( ${XCODE_VERSION//./ } )
 -    if test "${XC_VERSION_PARTS[[0]]}" != "6" -a "${XC_VERSION_PARTS[[0]]}" != "9" -a "${XC_VERSION_PARTS[[0]]}" != "10" -a "${XC_VERSION_PARTS[[0]]}" != "11" -a "${XC_VERSION_PARTS[[0]]}" != "12" ; then
 -      AC_MSG_ERROR([Xcode 6, 9-12 is required to build JDK 8, the version found was $XCODE_VERSION. Use --with-xcode-path to specify the location of Xcode or make Xcode active by using xcode-select.])
<span style='display:block; white-space:pre;background:#ffe0e0;'>-+    if test "${XC_VERSION_PARTS[[0]]}" != "3" -a "${XC_VERSION_PARTS[[0]]}" != "4" -a "${XC_VERSION_PARTS[[0]]}" != "5" -a "${XC_VERSION_PARTS[[0]]}" != "6" -a "${XC_VERSION_PARTS[[0]]}" != "7" -a "${XC_VERSION_PARTS[[0]]}" != "8" -a "${XC_VERSION_PARTS[[0]]}" != "9" -a "${XC_VERSION_PARTS[[0]]}" != "10" -a "${XC_VERSION_PARTS[[0]]}" != "11" -a "${XC_VERSION_PARTS[[0]]}" != "12" -a "${XC_VERSION_PARTS[[0]]}" != "13"  -a "${XC_VERSION_PARTS[[0]]}" != "14" ; then
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-+      AC_MSG_ERROR([Xcode 3-14 is required to build JDK 8, the version found was $XCODE_VERSION. Use --with-xcode-path to specify the location of Xcode or make Xcode active by using xcode-select.])
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>++    if test "${XC_VERSION_PARTS[[0]]}" -lt "3" ; then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>++      AC_MSG_ERROR([Xcode 3+ is required to build JDK 8, the version found was $XCODE_VERSION. Use --with-xcode-path to specify the location of Xcode or make Xcode active by using xcode-select.])
</span>      fi
  
      # Some versions of Xcode command line tools install gcc and g++ as symlinks to
</pre><pre style='margin:0'>

</pre>