diff options
author | Richard Sharpe <sharpe@samba.org> | 2003-08-14 00:08:42 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2003-08-14 00:08:42 +0000 |
commit | 02e3d779f150f99e777007a50b58861c8921925b (patch) | |
tree | 630b187a7f25b74a6607816a60790e8eaf3451e9 | |
parent | e97ff92a27eee81c5a6f648e3a898fed66c6a63f (diff) | |
download | samba-02e3d779f150f99e777007a50b58861c8921925b.tar.gz samba-02e3d779f150f99e777007a50b58861c8921925b.tar.xz samba-02e3d779f150f99e777007a50b58861c8921925b.zip |
A small tweak to allow IRIX to work by detecting ISO-8859-1 to UTF-8,
because Samba really only needs CP850 to UTF-8 and ISO-8859-1 seems to be
much the same as 8859.
-rw-r--r-- | source/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in index ea8ad753187..a16c5cbf966 100644 --- a/source/configure.in +++ b/source/configure.in @@ -1573,7 +1573,7 @@ main(){ if (cd == 0 || cd == (iconv_t)-1) { cd = iconv_open("IBM850", "UCS-2LE"); /* Solaris has this */ if (cd == 0 || cd == (iconv_t)-1) { - cd = iconv_open("ISO-8859-1", "UCS-2LE"); /* Solaris has this */ + cd = iconv_open("ISO-8859-1", "UTF-8"); /* IRIX has this */ if (cd == 0 || cd == (iconv_t)-1) { return -1; } |