From d1b195b67171ee246cf589670f1a7db04fa93afc Mon Sep 17 00:00:00 2001 From: Explorer09 Date: Fri, 17 Feb 2017 23:19:10 +0800 Subject: build: Include ; add strcasecmp() check to configure. strings.h (not string.h) is the standard-defined include header for strcasecmp(). Include for portability (even though glibc exposes strcasecmp() declaration also in by default). --- src/flexdef.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/flexdef.h b/src/flexdef.h index b3162e2..dd643a7 100644 --- a/src/flexdef.h +++ b/src/flexdef.h @@ -73,6 +73,8 @@ #include /* Required: regcomp(), regexec() and regerror() in */ #include +/* Required: strcasecmp() in */ +#include #include "flexint.h" /* We use gettext. So, when we write strings which should be translated, we mark them with _() */ -- cgit v1.2.3