From 2bb4e23cc463b7eedf7bd484ed86c0e188c39634 Mon Sep 17 00:00:00 2001 From: Krzysztof Sommerfeld Date: Wed, 20 Dec 2023 02:22:35 +0100 Subject: [PATCH] Make use of methods defined in utils unix layer Some unix-like concepts are supported by VxWorks VSB layer - UTILS_UNIX. One of such methods is getgrgid(). Include it in `qfilesystemengine_unix.cpp`, so that we don't need to exclude VxWorks from code that uses it anymore. Task-number: QTBUG-115777 Change-Id: I72b301647bfdb208cb6859bb0f9994e3537fc345 Reviewed-by: Thiago Macieira (cherry picked from commit 21196d26d84f0f9984308660714921aa17790bc4) --- src/corelib/io/qfilesystemengine_unix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp index 3c7436b20a4..cacce00257f 100644 --- a/src/corelib/io/qfilesystemengine_unix.cpp +++ b/src/corelib/io/qfilesystemengine_unix.cpp @@ -19,6 +19,7 @@ # include #endif // QT_BOOTSTRAPPED +#include #include #include // for realpath() #include