From 9bc6698a96e318e5c47ae66254c3a8ae3f44bf97 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 6 Oct 2008 16:54:54 +0200 Subject: configure.ac: added option --disable-wide The configure option "--disable-wide" disables wide character support. This simplifies lots of internal calculations and makes the ncmpc binary leaner. --- src/charset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/charset.c b/src/charset.c index ccfac0ef8..5625f1277 100644 --- a/src/charset.c +++ b/src/charset.c @@ -41,7 +41,7 @@ utf8_width(const char *str) { assert(str != NULL); -#ifdef HAVE_LOCALE_H +#ifdef ENABLE_WIDE if (g_utf8_validate(str, -1, NULL)) { size_t len = g_utf8_strlen(str, -1); unsigned width = 0; -- cgit v1.2.3