diff options
| author | Sonicadvance1 <sonicadvance1@gmail.com> | 2008-07-20 11:02:41 +0000 |
|---|---|---|
| committer | Sonicadvance1 <sonicadvance1@gmail.com> | 2008-07-20 11:02:41 +0000 |
| commit | c7795c41b7f44bed9e6c1dbab40edebfe8566ded (patch) | |
| tree | c22daf09bb367e78062cddd4a806f85aaa6e83a9 /Source/Core/Common | |
| parent | 35950043a663ac0e07666a44955de526fb1ee8c6 (diff) | |
Linux: Fix ups for people running Linux. If it breaks anything, punch me in the face.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@30 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/Common.h | 2 | ||||
| -rw-r--r-- | Source/Core/Common/Src/Plugin.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Common/Src/SConscript | 1 | ||||
| -rw-r--r-- | Source/Core/Common/Src/Timer.cpp | 2 |
4 files changed, 5 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/Common.h b/Source/Core/Common/Src/Common.h index 8281703c10..a9891b68b3 100644 --- a/Source/Core/Common/Src/Common.h +++ b/Source/Core/Common/Src/Common.h @@ -19,6 +19,8 @@ #define _COMMON_H
#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
#ifdef _WIN32
#define POSIX 0
diff --git a/Source/Core/Common/Src/Plugin.cpp b/Source/Core/Common/Src/Plugin.cpp index 5b37e346b8..3495c55842 100644 --- a/Source/Core/Common/Src/Plugin.cpp +++ b/Source/Core/Common/Src/Plugin.cpp @@ -15,7 +15,7 @@ // Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
-#include "plugin.h"
+#include "Plugin.h"
namespace Common
{
diff --git a/Source/Core/Common/Src/SConscript b/Source/Core/Common/Src/SConscript index e7d9333355..5974faabff 100644 --- a/Source/Core/Common/Src/SConscript +++ b/Source/Core/Common/Src/SConscript @@ -7,6 +7,7 @@ files = ["Common.cpp", "HTTP.cpp", "IniFile.cpp", "Logging.cpp", + "FileUtil.cpp", "MappedFile.cpp", "MathUtil.cpp", "MemArena.cpp", diff --git a/Source/Core/Common/Src/Timer.cpp b/Source/Core/Common/Src/Timer.cpp index b4ca9e3860..359c5f9039 100644 --- a/Source/Core/Common/Src/Timer.cpp +++ b/Source/Core/Common/Src/Timer.cpp @@ -23,7 +23,7 @@ #include <time.h>
#include "Common.h"
-#include "Timer.H"
+#include "Timer.h"
#ifdef __GNUC__
#include <sys/timeb.h>
|
