do not exclude iconv support if unicode is enabled

This commit is contained in:
Andrzej Rybczak
2009-01-17 14:10:44 +01:00
parent 7d82da3fed
commit fd5a3e142c
6 changed files with 37 additions and 19 deletions

View File

@@ -25,9 +25,9 @@
#include <config.h>
#endif
#include <string>
#if defined(SUPPORTED_LOCALES) && defined(HAVE_ICONV_H)
#if !defined(_UTF8) && defined(HAVE_ICONV_H)
#include <string>
void init_current_locale();
@@ -53,7 +53,7 @@ void str_pool_locale_to_utf(char *&);
#define str_pool_utf_to_locale(x);
#define str_pool_locale_to_utf(x);
#endif // !_UTF8 && HAVE_ICONV_H
#endif // SUPPORTED_LOCALES && HAVE_ICONV_H
#endif