Skip to content

Commit

Permalink
bump mysql client
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Sep 24, 2024
1 parent ccf589d commit 01bebae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:

- run: brew test-bot --only-cleanup-before

- run: brew test-bot --only-setup || true
# - run: brew test-bot --only-setup || true

- run: brew test-bot --only-tap-syntax || true
# - run: brew test-bot --only-tap-syntax || true

- run: brew test-bot --only-formulae --skip-dependents
if: github.event_name == 'pull_request'
Expand Down
12 changes: 6 additions & 6 deletions Formula/mariadb-connector-c-static.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class MariadbConnectorCStatic < Formula
desc "MariaDB database connector for C applications"
homepage "https://mariadb.org/download/?tab=connector&prod=connector-c"
url "https://downloads.mariadb.com/Connectors/c/connector-c-3.3.4/mariadb-connector-c-3.3.4-src.tar.gz"
mirror "https://fossies.org/linux/misc/mariadb-connector-c-3.3.4-src.tar.gz/"
sha256 "486e5fdf976a8e7fadf583ae912128655e013ac575fa79b2d1af0fb8827a78ed"
url "https://archive.mariadb.org/connector-c-3.4.1/mariadb-connector-c-3.4.1-src.tar.gz"
mirror "https://fossies.org/linux/misc/mariadb-connector-c-3.4.1-src.tar.gz/"
sha256 "0a7f2522a44a7369c1dda89676e43485037596a7b1534898448175178aedeb4d"
license "LGPL-2.1-or-later"
head "https://github.com/mariadb-corporation/mariadb-connector-c.git", branch: "3.3"

Expand All @@ -15,7 +15,7 @@ class MariadbConnectorCStatic < Formula
end

depends_on "cmake" => :build
depends_on "openssl@1.1"
depends_on "openssl@3"

uses_from_macos "curl"
uses_from_macos "zlib"
Expand All @@ -35,9 +35,9 @@ def install
args << "-DCLIENT_PLUGIN_MYSQL_CLEAR_PASSWORD=STATIC"
args << "-DCLIENT_PLUGIN_MYSQL_OLD_PASSWORD=STATIC"
args << "-DCLIENT_PLUGIN_REMOTE_IO=OFF"
args << "-DWITH_OPENSSL=On"
args << "-DWITH_SSL=OPENSSL"
args << "-DWITH_EXTERNAL_ZLIB=On"
args << "-DOPENSSL_INCLUDE_DIR=#{Formula["openssl@1.1"].opt_include}"
args << "-DOPENSSL_INCLUDE_DIR=#{Formula["openssl@3"].opt_include}"
args << "-DINSTALL_MANDIR=#{share}"
args << "-DCOMPILATION_COMMENT=Homebrew"

Expand Down

0 comments on commit 01bebae

Please sign in to comment.