From 9008bcbe54313ad327a26d5a939b03f5e516a9de Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 22 May 2014 11:33:09 -0700 Subject: [PATCH] Include strings.h if it exists for strncasecmp --- utils/makehrtf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/makehrtf.c b/utils/makehrtf.c index e35c45a7..7c836b33 100644 --- a/utils/makehrtf.c +++ b/utils/makehrtf.c @@ -58,7 +58,6 @@ * 1999 */ -// Needed for 64-bit unsigned integer. #include "config.h" #include @@ -67,6 +66,9 @@ #include #include #include +#ifdef HAVE_STRINGS_H +#include +#endif // Rely (if naively) on OpenAL's header for the types used for serialization. #include "AL/al.h" -- 2.11.4.GIT