aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--src/main.c4
2 files changed, 3 insertions, 3 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
diff --git a/src/main.c b/src/main.c
index 0efb512ea..2e8700f02 100644
--- a/src/main.c
+++ b/src/main.c
@@ -72,7 +72,7 @@
#include <grp.h>
#endif
-#ifdef HAVE_LOCALE
+#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
@@ -221,7 +221,7 @@ int main(int argc, char *argv[])
daemonize_close_stdin();
-#ifdef HAVE_LOCALE
+#ifdef HAVE_LOCALE_H
/* initialize locale */
setlocale(LC_CTYPE,"");
#endif