Skip to content
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

freetds: switch to openssl@3 #134277

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Formula/freetds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ class Freetds < Formula
desc "Libraries to talk to Microsoft SQL Server and Sybase databases"
homepage "https://www.freetds.org/"
license "GPL-2.0-or-later"
revision 1

stable do
url "https://www.freetds.org/files/stable/freetds-1.3.18.tar.bz2", using: :homebrew_curl
Expand Down Expand Up @@ -39,7 +40,7 @@ class Freetds < Formula
end

depends_on "pkg-config" => :build
depends_on "openssl@1.1"
depends_on "openssl@3"
depends_on "unixodbc"

uses_from_macos "krb5"
Expand All @@ -55,7 +56,7 @@ def install
--mandir=#{man}
--sysconfdir=#{etc}
--with-unixodbc=#{Formula["unixodbc"].opt_prefix}
--with-openssl=#{Formula["openssl@1.1"].opt_prefix}
--with-openssl=#{Formula["openssl@3"].opt_prefix}
--enable-sybase-compat
--enable-krb5
--enable-odbc-wide
Expand Down