From a4c663507755ea645ac0acd7333d4750f01d28f7 Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Wed, 24 Apr 2024 16:02:15 +0200 Subject: [PATCH] Add the missing include of termios.h The include unlocks the usage of the TIOCNOTTY constant. Fixes: QTBUG-124642 Change-Id: Ife2475626ca61efe38ea7928a9b61a8aded1701d Reviewed-by: Thiago Macieira --- src/corelib/io/qprocess_unix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/corelib/io/qprocess_unix.cpp b/src/corelib/io/qprocess_unix.cpp index fcbce92ade..5c696433fd 100644 --- a/src/corelib/io/qprocess_unix.cpp +++ b/src/corelib/io/qprocess_unix.cpp @@ -37,6 +37,7 @@ #include #include #include +#include #include #if __has_include()