diff --git a/src/main.c b/src/main.c index 39293bb11..365d1780c 100644 --- a/src/main.c +++ b/src/main.c @@ -53,6 +53,10 @@ #include +#ifdef HAVE_LOCALE +#include +#endif + #define SYSTEM_CONFIG_FILE_LOCATION "/etc/mpd.conf" #define USER_CONFIG_FILE_LOCATION "/.mpdconf" @@ -382,6 +386,11 @@ int main(int argc, char *argv[]) Options options; clock_t start; +#ifdef HAVE_LOCALE + /* initialize locale */ + setlocale(LC_CTYPE,""); +#endif + /* enable GLib's thread safety code */ g_thread_init(NULL);