You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version: mozc-0.13.464.102
target file: base/iconv.cc
category: build fail
OS: FreeBSD 9-CURRENT / 8.1-RELEASE
CC: gcc 4.2.1 (FreeBSD default compiler)
base/iconv.cc build fails on FreeBSD because of follow line:
if (iconv(ic, reinterpret_cast<char **>(&ibuf), &ilen, &obuf, &olen)
follow line is acceptable.
if (iconv(ic, (const char **)(&ibuf), &ilen, &obuf, &olen)
Please change that line or fix it in another way.
Original issue reported on code.google.com by [email protected] on 20 Sep 2010 at 2:58
The text was updated successfully, but these errors were encountered:
This is a follow up CL to 766685b,
which got rid of the dependency on iconv.
Even though we do not have any plan to use mozc::EncodingUtil in Android
build, in theory this class is compatible with Android. Hence having
OS_ANDROID does not make sense anymore.
BUG=#27,#252
TEST=
REF_BUG=
REF_CL=107354157
Original issue reported on code.google.com by
[email protected]
on 20 Sep 2010 at 2:58The text was updated successfully, but these errors were encountered: