diff options
| author | Adam Vandenberg | 2013-06-14 08:43:43 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-14 08:43:55 -0700 |
| commit | bcf1985de7151dbe82240ec6f582263969124d32 (patch) | |
| tree | 96e64ba341152b2296d61baf9248260533ddda58 /Library/Formula | |
| parent | 53fbb54af70dab089b48ecaeb14d179e6295d395 (diff) | |
| download | homebrew-bcf1985de7151dbe82240ec6f582263969124d32.tar.bz2 | |
subversion: restore neon support
Neon is needed to connect to certain WebDAV servers.
Closes #20495.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/subversion.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index 9fe1373a2..4b8d4fa8f 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -14,8 +14,9 @@ class Subversion < Formula depends_on 'pkg-config' => :build # Always build against Homebrew versions instead of system versions for consistency. - depends_on 'sqlite' + depends_on 'neon' depends_on 'serf' + depends_on 'sqlite' depends_on :python => :optional # Building Ruby bindings requires libtool @@ -79,7 +80,7 @@ class Subversion < Formula "--with-zlib=/usr", "--with-sqlite=#{Formula.factory('sqlite').opt_prefix}", "--with-serf=#{Formula.factory('serf').opt_prefix}", - "--without-neon", + "--disable-neon-version-check", "--disable-mod-activation", "--disable-nls", "--without-apache-libexecdir", |
