diff options
| author | Hans Huebner | 2012-10-27 12:37:07 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-27 19:48:50 -0700 |
| commit | fef959dc379ee3fa3f6ed01eca590593ea0c447f (patch) | |
| tree | e29d85e62a1edd258036313ad0ce83b7a40ae86d /Library/Formula | |
| parent | ce2f7e1bd664e7260e48ffa37bf3fc909232a555 (diff) | |
| download | homebrew-fef959dc379ee3fa3f6ed01eca590593ea0c447f.tar.bz2 | |
exim 4.80.1
Also enable plaintext authenticator and SSL.
Closes #15695.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/exim.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/exim.rb b/Library/Formula/exim.rb index c0b4f505e..78035b026 100644 --- a/Library/Formula/exim.rb +++ b/Library/Formula/exim.rb @@ -17,8 +17,8 @@ end class Exim < Formula homepage 'http://exim.org' - url 'http://ftp.exim.org/pub/exim/exim4/exim-4.77.tar.gz' - sha1 '2c1ba6b8f627b71b3b58fc0cc56e394590dcd1dc' + url 'http://ftp.exim.org/pub/exim/exim4/exim-4.80.1.tar.gz' + sha1 'eeb6d1e4c7c1dc0e4de55ba61316718e44d810b3' option 'support-maildir', 'Support delivery in Maildir format' @@ -35,6 +35,9 @@ class Exim < Formula s.gsub! '/usr/exim', prefix s.gsub! '/var/spool/exim', var/'spool/exim' s << "SUPPORT_MAILDIR=yes\n" if build.include? 'support-maildir' + s << "AUTH_PLAINTEXT=yes\n" + s << "SUPPORT_TLS=yes\n" + s << "TLS_LIBS=-lssl -lcrypto\n" # For non-/usr/local HOMEBREW_PREFIX s << "LOOKUP_INCLUDE=-I#{HOMEBREW_PREFIX}/include\n" |
