summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2003-08-14 00:08:42 +0000
committerRichard Sharpe <sharpe@samba.org>2003-08-14 00:08:42 +0000
commit1eb7fe8eaf9306e9ef1447a6b47a5b91df8584cb (patch)
tree063e6c789a3753fc4932f69e044c1a76a836760e
parent5ac23a96a2dfc4433590aba78b88ceadaf07f1ec (diff)
downloadsamba-1eb7fe8eaf9306e9ef1447a6b47a5b91df8584cb.tar.gz
samba-1eb7fe8eaf9306e9ef1447a6b47a5b91df8584cb.tar.bz2
samba-1eb7fe8eaf9306e9ef1447a6b47a5b91df8584cb.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. (This used to be commit 02e3d779f150f99e777007a50b58861c8921925b)
-rw-r--r--source3/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index ea8ad75318..a16c5cbf96 100644
--- a/source3/configure.in
+++ b/source3/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;
}