Re: svnadmin upgrade output message i18n issue
From: Dongsheng Song <dongsheng.song_at_gmail.com>
Date: Thu, 23 May 2013 16:00:21 +0800
I have download a binary package from win32svn[1], and confirmed your issue.
I check the subversion.mo file:
msgunfmt.exe subversion.mo -o subversion.po
It looks OK. Then I replaced the intl3_svn.dll file with gettext
C:\var\tmp>svnadmin upgrade test
?\205?\234?\179?\201?\201?\253?\188?\182?\161?\163
C:\var\tmp>
The I write a simple test program:
/*
#define _(S) gettext(S)
#define PACKAGE_NAME "subversion"
int main(int argc, char **argv)
setlocale(LC_ALL,"");
bindtextdomain(PACKAGE_NAME, "../share/locale");
#undef printf
printf(_("Repository lock acquired.\n"
printf(_("\n"
return 0;
C:\var\tmp\svn-win32-1.7.9\bin>cl /nologo /MD /I. t-intl.c libintl-8.lib
C:\var\tmp\svn-win32-1.7.9\bin>t-intl.exe
完成升级。
So this is a binary package build issue, not subversion issue.
[1] http://sourceforge.net/projects/win32svn/files/1.7.9/apache24/svn-win32-1.7.9-ap24.zip/download
On Thu, May 23, 2013 at 10:13 AM, QXO <qxodream_at_gmail.com> wrote:
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.