Subversion Precomposed UTF-8 patch

来源:互联网 发布:和博士谈恋爱知乎 编辑:程序博客网 时间:2024/06/06 19:00
pre-composed utf-8 patched subversionIf you are using Japanese or some of european languages characters in name of files or directories on subversion repository which is also accessed from platforms other than Ma OS X. This patched version of subversion is for you.See the url below for details:http://subversion.tigris.org/issues/show_bug.cgi?id=2464I made a little patch for the issue and a instruction of how to build binary with it lines below.curl -O http://www.opensource.apple.com/darwinsource/tarballs/other/subversion-16.tar.gzcurl -O http://www.opensource.apple.com/darwinsource/tarballs/other/neon-8.tar.gzcurl -O http://subversion.tigris.org/nonav/issues/showattachment.cgi/813/utf8precompose_macosx_2.patchtar xzf subversion-16.tar.gztar xzf neon-8.tar.gzpatch -p0 < utf8precompose_macosx_2.patchmv neon-8/neon subversion-16/subversioncd subversion-16/subversion./configure --with-sslmakesudo make install# patched version of svn will be installed on /usr/local/bin,# make sure you have /usr/local/bin in your PATH environment variable.If you have trouble about using https with the binary you built, you may get /opt/local/bin/pkg-config as a result of `which pkg-config`, you can prepend environment variable before configure command like this:PKG_CONFIG_PATH=/usr/local/lib/pkgconfig configure --with-ssl
原创粉丝点击