(svn r13852) -Fix (r13849): [OSX] fixed universal binary building without breaking anything this time

This commit is contained in:
bjarni
2008-07-27 20:43:21 +00:00
parent 1aa6e00b48
commit 78730d4c71
2 changed files with 26 additions and 18 deletions

View File

@@ -144,7 +144,7 @@ static const char *convert_tofrom_fs(iconv_t convd, const char *name)
/* Work around buggy iconv implementation where inbuf is wrongly typed as
* non-const. Correct implementation is at
* http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.html */
#if defined(HAVE_BROKEN_ICONV) && !defined(__APPLE__)
#ifdef HAVE_BROKEN_ICONV
char *inbuf = (char*)name;
#else
const char *inbuf = name;