diff options
author | Max Kellermann <max@duempel.org> | 2008-12-25 04:47:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-25 04:47:56 +0100 |
commit | 20cd751db12c400c98533c1b98fa984a9aecf9db (patch) | |
tree | 07e677b4277c07386dee4e940909483d1941b06c /src/options.c | |
parent | 844bc26c63e8a0b448a7da6ee89acdcc4585924a (diff) | |
download | mpd-20cd751db12c400c98533c1b98fa984a9aecf9db.tar.gz mpd-20cd751db12c400c98533c1b98fa984a9aecf9db.tar.xz mpd-20cd751db12c400c98533c1b98fa984a9aecf9db.zip |
configure.ac: added --disable-multibyte
This allows you to disable wide character support, retaining multibyte
character support.
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index 7c82f7cef..918f3135c 100644 --- a/src/options.c +++ b/src/options.c @@ -166,6 +166,9 @@ handle_option(int c, const char *arg) #ifndef NDEBUG " debug" #endif +#ifdef ENABLE_MULTIBYTE + " multibyte" +#endif #ifdef ENABLE_WIDE " wide" #endif |