From eadc2822910f5fc2b18cb904cbcc7e151e6a49eb Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 3 Oct 2019 10:25:48 +0000 Subject: [PATCH] fetchmail 6.4.1 (with openssl@1.1) Closes #44847. Signed-off-by: Viktor Szakats --- Formula/fetchmail.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/fetchmail.rb b/Formula/fetchmail.rb index 5979572c63..d36cfbe64c 100644 --- a/Formula/fetchmail.rb +++ b/Formula/fetchmail.rb @@ -1,8 +1,8 @@ class Fetchmail < Formula desc "Fetch mail from a POP, IMAP, ETRN, or ODMR-capable server" homepage "http://www.fetchmail.info/" - url "https://downloads.sourceforge.net/project/fetchmail/branch_6.3/fetchmail-6.3.26.tar.xz" - sha256 "79b4c54cdbaf02c1a9a691d9948fcb1a77a1591a813e904283a8b614b757e850" + url "https://downloads.sourceforge.net/project/fetchmail/branch_6.4/fetchmail-6.4.1.tar.xz" + sha256 "3f33f11dd08c3e8cc3e9d18eec686b1626d4818f4d5a72791507bbc4dce6a9a0" bottle do cellar :any @@ -12,12 +12,12 @@ class Fetchmail < Formula sha256 "bbb488da8deef2cf53d35034a9e9b058070dc671645ca1fb86698110050c13f7" => :sierra end - depends_on "openssl" # no OpenSSL 1.1 support + depends_on "openssl@1.1" def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--with-ssl=#{Formula["openssl"].opt_prefix}" + "--with-ssl=#{Formula["openssl@1.1"].opt_prefix}" system "make", "install" end