Module: Mesa Branch: master Commit: 82563b6a9fa2f45989c342307b0967c35e2cc2f4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=82563b6a9fa2f45989c342307b0967c35e2cc2f4
Author: Michel Zou <[email protected]> Date: Mon Oct 5 20:11:26 2020 +0200 util: drop non-posix header fnmatch Seems fnmatch usage was removed but not the include Reviewed-by: Eric Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7013> --- src/util/xmlconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/xmlconfig.c b/src/util/xmlconfig.c index 6505fb4015e..a80be8a7fa0 100644 --- a/src/util/xmlconfig.c +++ b/src/util/xmlconfig.c @@ -49,7 +49,7 @@ #include <unistd.h> #include <errno.h> #include <dirent.h> -#include <fnmatch.h> +#include <sys/stat.h> #include <regex.h> #include "strndup.h" #include "xmlconfig.h" _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
