mariadb@10.5 10.5.18

* mariadb@10.5 10.5.18
* mariadb@10.5: use libedit on macOS

Closes #115169.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Dan 2022-11-08 12:07:05 +01:00 committed by BrewTestBot
parent 199a0bbeae
commit 55ff70009b
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 6 additions and 3 deletions

View File

@ -1,10 +1,9 @@
class MariadbAT105 < Formula class MariadbAT105 < Formula
desc "Drop-in replacement for MySQL" desc "Drop-in replacement for MySQL"
homepage "https://mariadb.org/" homepage "https://mariadb.org/"
url "https://downloads.mariadb.com/MariaDB/mariadb-10.5.13/source/mariadb-10.5.13.tar.gz" url "https://downloads.mariadb.com/MariaDB/mariadb-10.5.18/source/mariadb-10.5.18.tar.gz"
sha256 "16f008c66831130e9263b2601265d566ffc4e890d37bacecd4dcecebfd0d1c58" sha256 "3593b0dcc0f2e80e98177019f5dcfa5cc8c14172ce161a6fa50f8084f2cef749"
license "GPL-2.0-only" license "GPL-2.0-only"
revision 1
# This uses a placeholder regex to satisfy the `PageMatch` strategy # This uses a placeholder regex to satisfy the `PageMatch` strategy
# requirement. In the future, this will be updated to use a `Json` strategy # requirement. In the future, this will be updated to use a `Json` strategy
@ -92,6 +91,10 @@ class MariadbAT105 < Formula
args << "-DCONNECT_WITH_JDBC=OFF" args << "-DCONNECT_WITH_JDBC=OFF"
end end
if OS.mac?
args << "-DWITH_READLINE=NO" # uses libedit on macOS
end
# disable TokuDB, which is currently not supported on macOS # disable TokuDB, which is currently not supported on macOS
args << "-DPLUGIN_TOKUDB=NO" args << "-DPLUGIN_TOKUDB=NO"