diff options
author | Max Kellermann <max@duempel.org> | 2008-12-25 04:15:44 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-25 04:15:44 +0100 |
commit | c39eb2cdf399c740c24884997364cf84c64fd46b (patch) | |
tree | cb27e0df8199ce28960cd316347783d519dab357 /src/options.c | |
parent | 634bed2e83799f604a60bfef62d5e240ea02511c (diff) | |
download | mpd-c39eb2cdf399c740c24884997364cf84c64fd46b.tar.gz mpd-c39eb2cdf399c740c24884997364cf84c64fd46b.tar.xz mpd-c39eb2cdf399c740c24884997364cf84c64fd46b.zip |
configure.ac: added --disable-locale option
Make locale.h mandatory. --disable-locale disables the locale.h
check.
Diffstat (limited to '')
-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 8c62e4b83..8a2ced94a 100644 --- a/src/options.c +++ b/src/options.c @@ -168,6 +168,9 @@ handle_option(int c, const char *arg) #ifdef ENABLE_WIDE " wide" #endif +#ifdef ENABLE_LOCALE + " locale" +#endif #ifdef ENABLE_NLS " nls" #endif |