From 1eb7fe8eaf9306e9ef1447a6b47a5b91df8584cb Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Thu, 14 Aug 2003 00:08:42 +0000 Subject: [PATCH] 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) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index ea8ad753187..a16c5cbf966 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; } -- 2.11.4.GIT