From d3a528c91ec77b29d4d70091f5eb6939919a19ab Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Thu, 25 Apr 2019 23:21:46 +0100 Subject: [PATCH] Remove unneeded include of dix.h from strcasestr.c In the meson build, functions to make up for the shortcomings of libc are compiled into a separate library. We don't bother making the pixman headers available (reasonably enough) to this compilation, but they are required indirectly by dix.h. Just remove this unneeded include. --- os/strcasestr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/os/strcasestr.c b/os/strcasestr.c index 1ca2ad6bb..3189cf21e 100644 --- a/os/strcasestr.c +++ b/os/strcasestr.c @@ -36,7 +36,6 @@ #include #include -#include "dix.h" /* * Find the first occurrence of find in s, ignore case.