diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-01-26 07:41:52 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-01-26 07:41:52 +0800 |
commit | f88a35a9d33927e8e29b35a0e6c6764b40b14deb (patch) | |
tree | c22f0942508745c1c121beab668626146dac5b5a /e-util | |
parent | fb1169cc5801c1e577dd8d8feb5309c517664714 (diff) | |
download | gsoc2013-evolution-f88a35a9d33927e8e29b35a0e6c6764b40b14deb.tar.gz gsoc2013-evolution-f88a35a9d33927e8e29b35a0e6c6764b40b14deb.tar.zst gsoc2013-evolution-f88a35a9d33927e8e29b35a0e6c6764b40b14deb.zip |
AIX and IRIX are like Sun systems - they use ISO8859-1 rather than names
2002-01-25 Jeffrey Stedfast <fejj@ximian.com>
* gal/util/e-iconv.c: AIX and IRIX are like Sun systems - they use
ISO8859-1 rather than names like ISO-8859-1.
svn path=/trunk/; revision=15478
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-iconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-iconv.c b/e-util/e-iconv.c index 774c6f6293..44c91fd412 100644 --- a/e-util/e-iconv.c +++ b/e-util/e-iconv.c @@ -5,7 +5,7 @@ * * Authors: * Michael Zucchi <notzed@ximian.com> - * Jeffery Steadfast <fejj@ximian.com> + * Jeffery Stedfast <fejj@ximian.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -43,7 +43,7 @@ #endif /* FIXME: Use feature test */ -#ifndef __sun__ +#if !defined (__aix__) && !defined (__irix__) && !defined (__sun__) #define ICONV_ISO_NEEDS_DASH (1) #endif |