diff options
author | Max Kellermann <max@duempel.org> | 2009-01-05 09:31:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-05 09:31:09 +0100 |
commit | 0fb21e67ef763c6a83ab8f5a7ed2aa95efdc4ab2 (patch) | |
tree | d64298cd024a6483765622993aaf01a91c427ba7 /configure.ac | |
parent | 694a919b8ea893415c5c791cb853a900e596e1a3 (diff) | |
download | mpd-0fb21e67ef763c6a83ab8f5a7ed2aa95efdc4ab2.tar.gz mpd-0fb21e67ef763c6a83ab8f5a7ed2aa95efdc4ab2.tar.xz mpd-0fb21e67ef763c6a83ab8f5a7ed2aa95efdc4ab2.zip |
configure.ac: use AC_CHECK_HEADERS to check for locale.h
AC_CHECK_HEADERS defines HAVE_LOCALE_H, so we don't have to manually
define HAVE_LOCALE.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4ccd33ed1..4f51e32a5 100644 --- a/configure.ac +++ b/configure.ac @@ -94,7 +94,7 @@ AC_CHECK_LIB(nsl,gethostbyname,MPD_LIBS="$MPD_LIBS -lnsl",) AC_CHECK_LIB(m,exp,MPD_LIBS="$MPD_LIBS -lm",) -AC_CHECK_HEADER(locale.h,[enable_locale=yes;AC_DEFINE(HAVE_LOCALE,1,[Define if locale.h is present])],enable_locale=no) +AC_CHECK_HEADERS(locale.h) dnl |