-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preliminary macOS 15 (Sequoia) support #17459
+564
−187
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: expat | ||
Version: 2.6.1 | ||
Description: expat XML parser | ||
URL: https://libexpat.github.io/ | ||
Libs: -L${libdir} -lexpat | ||
Libs.private: | ||
Cflags: | ||
Cflags.private: -DXML_STATIC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#*************************************************************************** | ||
# _ _ ____ _ | ||
# Project ___| | | | _ \| | | ||
# / __| | | | |_) | | | ||
# | (__| |_| | _ <| |___ | ||
# \___|\___/|_| \_\_____| | ||
# | ||
# Copyright (C) Daniel Stenberg, <[email protected]>, et al. | ||
# | ||
# This software is licensed as described in the file COPYING, which | ||
# you should have received as part of this distribution. The terms | ||
# are also available at https://curl.se/docs/copyright.html. | ||
# | ||
# You may opt to use, copy, modify, merge, publish, distribute and/or sell | ||
# copies of the Software, and permit persons to whom the Software is | ||
# furnished to do so, under the terms of the COPYING file. | ||
# | ||
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
# KIND, either express or implied. | ||
# | ||
# SPDX-License-Identifier: curl | ||
# | ||
########################################################################### | ||
|
||
# This should most probably benefit from getting a "Requires:" field added | ||
# dynamically by configure. | ||
# | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
supported_protocols="DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS IPFS IPNS LDAP LDAPS MQTT POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP" | ||
supported_features="alt-svc AsynchDNS GSS-API HSTS HTTP2 HTTPS-proxy IPv6 Kerberos Largefile libz MultiSSL NTLM NTLM_WB SPNEGO SSL threadsafe UnixSockets" | ||
|
||
Name: libcurl | ||
URL: https://curl.se/ | ||
Description: Library to transfer files with ftp, http, etc. | ||
Version: 8.7.1 | ||
Libs: -L${libdir} -lcurl | ||
Libs.private: -lldap -lz | ||
Cflags: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: libedit | ||
Description: command line editor library provides generic line editing, history, and tokenization functions. | ||
Version: 3.0 | ||
Requires: | ||
Libs: -L${libdir} -ledit | ||
Cflags: -I${includedir}/editline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
|
||
Name: libexslt | ||
Version: 0.8.20 | ||
Description: EXSLT Extension library | ||
Requires: libxml-2.0, libxslt | ||
Cflags: | ||
Libs: -L${libdir} -lexslt | ||
Libs.private: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
toolexeclibdir=${libdir} | ||
includedir=${prefix}/include/ffi | ||
|
||
Name: libffi | ||
Description: Library supporting Foreign Function Interfaces | ||
Version: 3.4-rc1 | ||
Libs: -L${toolexeclibdir} -lffi | ||
Cflags: -I${includedir} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
modules=1 | ||
|
||
Name: libXML | ||
Version: 2.9.13 | ||
Description: libXML library version2. | ||
Requires: | ||
Libs: -L${libdir} -lxml2 | ||
Libs.private: -lz -lpthread -licucore -lm | ||
Cflags: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
|
||
Name: libxslt | ||
Version: 1.1.35 | ||
Description: XSLT library version 2. | ||
Requires: libxml-2.0 | ||
Cflags: | ||
Libs: -L${libdir} -lxslt | ||
Libs.private: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
abi_version=5.4 | ||
major_version=6 | ||
version=6.0.20150808 | ||
|
||
Name: ncurses | ||
Description: ncurses 6.0 library | ||
Version: ${version} | ||
URL: http://invisible-island.net/ncurses | ||
Requires.private: | ||
Libs: -L${libdir} -lncurses | ||
Libs.private: | ||
Cflags: -D_DARWIN_C_SOURCE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
abi_version=5.4 | ||
major_version=6 | ||
version=6.0.20150808 | ||
|
||
Name: ncursesw | ||
Description: ncurses 6.0 library | ||
Version: ${version} | ||
URL: http://invisible-island.net/ncurses | ||
Requires.private: | ||
Libs: -L${libdir} -lncurses | ||
Libs.private: | ||
Cflags: -D_DARWIN_C_SOURCE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: SQLite | ||
Description: SQL database engine | ||
Version: 3.43.2 | ||
Libs: -L${libdir} -lsqlite3 | ||
Libs.private: | ||
Cflags: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
sharedlibdir=${libdir} | ||
includedir=${prefix}/include/uuid | ||
|
||
Name: uuid | ||
Description: Universally unique id library | ||
Version: 1.0 | ||
|
||
Requires: | ||
Libs: | ||
Cflags: -I${includedir} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk | ||
prefix=${homebrew_sdkroot}/usr | ||
exec_prefix=/usr | ||
libdir=${exec_prefix}/lib | ||
sharedlibdir=${libdir} | ||
includedir=${prefix}/include | ||
|
||
Name: zlib | ||
Description: zlib compression library | ||
Version: 1.2.12 | ||
|
||
Requires: | ||
Libs: -L${libdir} -L${sharedlibdir} -lz | ||
Cflags: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we not exclude both?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put a compatibility layer on the ruby-macho side:
https://github.com/Homebrew/ruby-macho/blob/af38cc83941ab0c5e91a8dd99f6a598a13f31d85/lib/macho/load_commands.rb#L558-L559