aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2014-08-15 22:27:15 +0200
committerMax Kellermann <max@duempel.org>2014-08-16 07:53:08 +0200
commite2e5cddcaabefbbbc73dc9a832ea657cfea2524f (patch)
tree777eb2490725a1428c434a276af6f40a6ad934c3
parent8b7718fbdc539a799c1c081f43263813613b26a3 (diff)
downloadmpd-e2e5cddcaabefbbbc73dc9a832ea657cfea2524f.tar.gz
mpd-e2e5cddcaabefbbbc73dc9a832ea657cfea2524f.tar.xz
mpd-e2e5cddcaabefbbbc73dc9a832ea657cfea2524f.zip
icu: include strings.h for strcasecmp
Again, POSIX says strcasecmp is not in string.h.
-rw-r--r--src/lib/icu/Collate.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/icu/Collate.cxx b/src/lib/icu/Collate.cxx
index f6621eb21..b8560a4d8 100644
--- a/src/lib/icu/Collate.cxx
+++ b/src/lib/icu/Collate.cxx
@@ -38,6 +38,7 @@
#include <assert.h>
#include <string.h>
+#include <strings.h>
#ifdef HAVE_ICU
static UCollator *collator;