aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-19 12:15:11 -0700
committerAdam Vandenberg2013-06-19 12:15:11 -0700
commitffb3e01f3ce6b17f82d52f267202e46bfa1570d2 (patch)
tree7202686ecffb8639fa9edf32f06f97c39613d8c3 /Library/Formula
parent5b79886e46789ccf75e1c7566d2b3cdeb12a37a7 (diff)
downloadhomebrew-ffb3e01f3ce6b17f82d52f267202e46bfa1570d2.tar.bz2
subversion: remove unicode patch
Patch no longer applies. Closes #20609.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/subversion.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb
index 6ed2ab5ea..7c1e3785c 100644
--- a/Library/Formula/subversion.rb
+++ b/Library/Formula/subversion.rb
@@ -9,7 +9,6 @@ class Subversion < Formula
option 'java', 'Build Java bindings'
option 'perl', 'Build Perl bindings'
option 'ruby', 'Build Ruby bindings'
- option 'unicode-path', 'Include support for OS X UTF-8-MAC filename'
depends_on 'pkg-config' => :build
@@ -27,11 +26,6 @@ class Subversion < Formula
def patches
ps = []
- # Patch for Subversion handling of OS X UTF-8-MAC filename.
- if build.include? 'unicode-path'
- ps << "https://raw.github.com/gist/3044094/1648c28f6133bcbb68b76b42669b0dc237c02dba/patch-path.c.diff"
- end
-
# Patch to prevent '-arch ppc' from being pulled in from Perl's $Config{ccflags}
if build.include? 'perl'
ps << DATA
@@ -186,18 +180,6 @@ class Subversion < Formula
EOS
end
- if build.include? 'unicode-path'
- s += <<-EOS.undent
- This unicode-path version implements a hack to deal with composed/decomposed
- unicode handling on Mac OS X which is different from linux and windows.
- It is an implementation of solution 1 from
- http://svn.collab.net/repos/svn/trunk/notes/unicode-composition-for-filenames
- which _WILL_ break some setups. Please be sure you understand what you
- are asking for when you install this version.
-
- EOS
- end
-
return s.empty? ? nil : s
end
end