summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-07-08 15:42:07 -0400
committerLioncash <mathew1800@gmail.com>2015-07-08 15:42:07 -0400
commit2079963d80af9a45ae91c7f09590806992c295fa (patch)
tree31b924f524bb32bf89cc516bc7d826e7d6b091b2 /Source/Core
parent31c083bf64db8b42a2dd08adbf6d4e98402db997 (diff)
parentc38ae5236e082c0b635085fced60559170ee9a8e (diff)
Merge pull request #2726 from rohit-n/build-pch
Fix building with PCH disabled.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/Logging/Log.h3
-rw-r--r--Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp1
2 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h
index 23fd6fca10..b95b7048b5 100644
--- a/Source/Core/Common/Logging/Log.h
+++ b/Source/Core/Common/Logging/Log.h
@@ -4,6 +4,9 @@
#pragma once
+#include "Common/CommonFuncs.h"
+#include "Common/MsgHandler.h"
+
namespace LogTypes
{
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp
index 9b31da73c4..75384393b6 100644
--- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp
@@ -2,6 +2,7 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include <fcntl.h>
#include <libudev.h>
#include <unistd.h>