diff options
| author | Elad Gariany | 2013-02-28 04:38:56 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-02-27 18:47:36 -0800 |
| commit | 3e53265cfa40eed349c2f98d7f3f3b035e4589ef (patch) | |
| tree | f71b4ff8da67e28d05e29c3cae7e083454b851c5 /Library/Formula/libsoup.rb | |
| parent | a1ed3eabb51ed5f08a3ca1286883d39e76b3723b (diff) | |
| download | homebrew-3e53265cfa40eed349c2f98d7f3f3b035e4589ef.tar.bz2 | |
libsoup: add depends_on pkg-config
also disable TLS check, since we provide gnutls
Fixes #18124.
Closes #18127.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libsoup.rb')
| -rw-r--r-- | Library/Formula/libsoup.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/libsoup.rb b/Library/Formula/libsoup.rb index efaa421a0..423da0048 100644 --- a/Library/Formula/libsoup.rb +++ b/Library/Formula/libsoup.rb @@ -6,6 +6,7 @@ class Libsoup < Formula sha256 '71b8923fc7a5fef9abc5420f7f3d666fdb589f43a8c50892d584d58b3c513f9a' depends_on 'xz' => :build + depends_on 'pkg-config' => :build depends_on 'glib-networking' # Required at runtime for TLS support depends_on 'gnutls' # Also required for TLS depends_on 'sqlite' # For SoupCookieJarSqlite @@ -26,7 +27,8 @@ class Libsoup < Formula system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--without-gnome" + "--without-gnome", + "--disable-tls-check" system "make install" end end |
