libxmlsec1: remove references to pre-Mavericks.

This commit is contained in:
Mike McQuaid 2019-01-24 18:34:40 +00:00
parent 075f774f75
commit 8606a1d132
No known key found for this signature in database
GPG key ID: 48A898132FD8EE70

View file

@ -14,7 +14,7 @@ class Libxmlsec1 < Formula
depends_on "pkg-config" => :build
depends_on "gnutls" # Yes, it wants both ssl/tls variations
depends_on "libgcrypt"
depends_on "libxml2" if MacOS.version <= :lion
depends_on "libxml2"
depends_on "openssl"
# Add HOMEBREW_PREFIX/lib to dl load path
@ -27,8 +27,6 @@ class Libxmlsec1 < Formula
"--disable-apps-crypto-dl",
"--with-openssl=#{Formula["openssl"].opt_prefix}"]
args << "--with-libxml=#{Formula["libxml2"].opt_prefix}" if MacOS.version <= :lion
system "./configure", *args
system "make", "install"
end