diff options
author | Herb Lewis <herb@samba.org> | 2003-08-14 22:46:25 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2003-08-14 22:46:25 +0000 |
commit | b679661d275e7e5ebafb665654cb39a2003b67bc (patch) | |
tree | 13005c3c5cd8fe5bdb88bba5726474c1c472cb10 /source3 | |
parent | b09eb5aa932a45d82b0b1d2a5d0c447be1a0f28a (diff) | |
download | samba-b679661d275e7e5ebafb665654cb39a2003b67bc.tar.gz samba-b679661d275e7e5ebafb665654cb39a2003b67bc.tar.bz2 samba-b679661d275e7e5ebafb665654cb39a2003b67bc.zip |
get rid of IRIX test as it is wrong.
(This used to be commit a93fa23c17c9f69de224cdd5471916eda3cd4fec)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source3/configure.in b/source3/configure.in index 5fd35cec38..8af1287517 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1579,10 +1579,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("ISO8859-1", "UTF-8"); /* IRIX has this */ - if (cd == 0 || cd == (iconv_t)-1) { - return -1; - } + return -1; } } } |