From 3d548df73ace54f8dba0841d3a27ad7d8bcc6a7d Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Sun, 14 Dec 2014 06:18:49 +0000 Subject: [PATCH] Add missing errno.h include --- drkonqi/detachedprocessmonitor.cpp | 1 + drkonqi/systeminformation.cpp | 1 + ksmserver/screenlocker/greeter/authenticator.cpp | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/drkonqi/detachedprocessmonitor.cpp b/drkonqi/detachedprocessmonitor.cpp index 85a87874c..8c03f508b 100644 --- a/drkonqi/detachedprocessmonitor.cpp +++ b/drkonqi/detachedprocessmonitor.cpp @@ -16,6 +16,7 @@ */ #include "detachedprocessmonitor.h" +#include #include #include diff --git a/drkonqi/systeminformation.cpp b/drkonqi/systeminformation.cpp index 8f5fc7fe7..35e63bb75 100644 --- a/drkonqi/systeminformation.cpp +++ b/drkonqi/systeminformation.cpp @@ -23,6 +23,7 @@ #include "systeminformation.h" #ifdef HAVE_UNAME +# include # include #endif diff --git a/ksmserver/screenlocker/greeter/authenticator.cpp b/ksmserver/screenlocker/greeter/authenticator.cpp index ad60f0bd0..4d916a1ba 100644 --- a/ksmserver/screenlocker/greeter/authenticator.cpp +++ b/ksmserver/screenlocker/greeter/authenticator.cpp @@ -30,10 +30,11 @@ along with this program. If not, see . #include // system -#include +#include #include #include #include +#include Authenticator::Authenticator(QObject *parent) : QObject(parent)