diff options
Diffstat (limited to '')
-rw-r--r-- | src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 6c85d5d1..305835e8 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -261,7 +261,7 @@ std::string utils::convert_text(const std::string& text, const std::string& toco * of all the Unix-like systems around there, only Linux/glibc seems to * come with a SuSv3-conforming iconv implementation. */ -#ifndef __linux +#if !(__linux) && !defined(__GLIBC__) const char * inbufp; #else char * inbufp; |