Merge pull request #1120 from rohit-n/muh-precompiled-headers

Fix build failing when disabling precompiled headers.
This commit is contained in:
Ryan Houdek 2014-09-19 17:43:42 -05:00
commit eb23882398
39 changed files with 50 additions and 11 deletions

View File

@ -9,6 +9,7 @@
#include "AudioCommon/SoundStream.h"
#include "Common/Event.h"
#include "Common/Thread.h"
#if defined(HAVE_AO) && HAVE_AO
#include <ao/ao.h>

View File

@ -23,7 +23,7 @@
*/
#include "AudioCommon/aldlist.h"
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#ifdef _WIN32
#include "../../../Externals/OpenAL/include/al.h"
#include "../../../Externals/OpenAL/include/alc.h"

View File

@ -3,7 +3,7 @@
// Refer to the license.txt file included.
#include "Common/ColorUtil.h"
#include "Common/CommonTypes.h"
#include "Common/CommonFuncs.h"
namespace ColorUtil
{

View File

@ -11,7 +11,7 @@
#include <ctime>
#include <string.h>
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#include "Common/Crypto/bn.h"
#include "Common/Crypto/ec.h"

View File

@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <algorithm>
#include "Common/CommonFuncs.h"
#include "Common/Hash.h"
#if _M_SSE >= 0x402
#include "Common/CPUDetect.h"

View File

@ -4,6 +4,7 @@
#include <cmath>
#include <cstring>
#include <limits>
#include <numeric>
#include "Common/CommonTypes.h"

View File

@ -6,8 +6,11 @@
#include <cstdlib>
#include <string>
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/MemoryUtil.h"
#include "Common/MsgHandler.h"
#include "Common/Logging/Log.h"
#ifdef _WIN32
#include <windows.h>

View File

@ -6,6 +6,8 @@
#include <cstring>
#include <errno.h>
#include "Common/CommonFuncs.h"
// Neither Android nor OS X support TLS
#if defined(__APPLE__) || (ANDROID && __clang__)
#define __thread

View File

@ -9,6 +9,7 @@
#include "Common/CommonTypes.h"
#include "Common/SymbolDB.h"
#include "Common/Logging/Log.h"
void SymbolDB::List()
{

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/Thread.h"

View File

@ -12,6 +12,7 @@
#include <sys/ucontext.h> // Look in here for the context definition.
#endif
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Core/MemTools.h"
#include "Core/HW/Memmap.h"

View File

@ -4,7 +4,7 @@
#include <string>
#include "Common/CommonTypes.h"
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Core/Boot/ElfReader.h"

View File

@ -8,6 +8,7 @@
#include <vector>
#include "Common/CommonTypes.h"
#include "Common/Logging/Log.h"
namespace Dolphin_Debugger
{

View File

@ -4,6 +4,7 @@
#include <sstream>
#include "Common/CommonFuncs.h"
#include "Common/MathUtil.h"
#include "Core/HW/DSP.h"

View File

@ -4,7 +4,7 @@
#pragma once
#include "Common/CommonTypes.h"
#include "Common/Common.h"
class PointerWrap;
namespace GPFifo

View File

@ -4,7 +4,9 @@
#include <queue>
#include "Common/CommonFuncs.h"
#include "Common/Thread.h"
#include "Common/Logging/Log.h"
#include "Core/HW/SI_Device.h"
#include "Core/HW/SI_DeviceGBA.h"

View File

@ -4,6 +4,7 @@
//
// Copyright (C) Hector Martin "marcan" (hector@marcansoft.com)
#include <cstring>
#include "Common/CommonTypes.h"
#include "Core/HW/WiimoteEmu/Encryption.h"

View File

@ -4,7 +4,9 @@
#include <vector>
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#include "Common/MsgHandler.h"
#include "Common/Logging/Log.h"
#include "Core/IPC_HLE/WiiMote_HID_Attr.h"
#if 0

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Core/HW/Memmap.h"
#include "Core/PowerPC/JitInterface.h"
#include "Core/PowerPC/PowerPC.h"

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Core/VolumeHandler.h"
#include "DiscIO/VolumeCreator.h"

View File

@ -9,6 +9,7 @@
#include "Common/Thread.h"
#endif
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/x64Analyzer.h"

View File

@ -8,7 +8,8 @@
#include "Common/ColorUtil.h"
#include "Common/CommonTypes.h"
#include "Common/MsgHandler.h"
#include "Common/Logging/Log.h"
#include "DiscIO/BannerLoaderGC.h"
#include "DiscIO/Filesystem.h"
#include "DiscIO/Volume.h"

View File

@ -6,6 +6,7 @@
#include <vector>
#include "Common/CommonTypes.h"
#include "Common/Logging/Log.h"
#include "DiscIO/Volume.h"
namespace DiscIO

View File

@ -9,7 +9,9 @@
#include <polarssl/aes.h>
#include <polarssl/sha1.h>
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/Logging/Log.h"
#include "DiscIO/Blob.h"
#include "DiscIO/Volume.h"
#include "DiscIO/VolumeGC.h"

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <sstream>
#include "InputCommon/ControllerInterface/Android/Android.h"
namespace ciface

View File

@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <cmath>
#include <cstring>
#include <X11/XKBlib.h>
#include "InputCommon/ControllerInterface/Xlib/XInput2.h"

View File

@ -1,3 +1,4 @@
#include <cstring>
#include <X11/XKBlib.h>
#include "InputCommon/ControllerInterface/Xlib/Xlib.h"

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/OGL/FramebufferManager.h"

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/Software/CPMemLoader.h"
#include "VideoCommon/VideoCommon.h"

View File

@ -4,6 +4,7 @@
#include <algorithm>
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Core/HW/Memmap.h"

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <cstring>
#include "VideoBackends/Software/SWStatistics.h"
SWStatistics swstats;

View File

@ -4,7 +4,7 @@
#pragma once
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#define STATISTICS 1

View File

@ -5,6 +5,7 @@
#include <algorithm>
#include <cmath>
#include "Common/CommonFuncs.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/Software/BPMemLoader.h"
#include "VideoBackends/Software/TextureSampler.h"

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/Software/Clipper.h"
#include "VideoBackends/Software/CPMemLoader.h"

View File

@ -2,6 +2,10 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <cmath>
#include "Common/Common.h"
#include "VideoCommon/LookUpTables.h"
#include "VideoCommon/sfont.inc"
#include "VideoCommon/TextureDecoder.h"

View File

@ -5,7 +5,7 @@
#include <algorithm>
#include <cmath>
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#include "Common/CPUDetect.h"
#include "VideoCommon/LookUpTables.h"
#include "VideoCommon/TextureDecoder.h"

View File

@ -5,7 +5,7 @@
#include <algorithm>
#include <cmath>
#include "Common/CommonTypes.h"
#include "Common/Common.h"
//#include "VideoCommon.h" // to get debug logs
#include "Common/CPUDetect.h"

View File

@ -8,6 +8,7 @@
#include <utility>
#include <vector>
#include "Common/CommonFuncs.h"
#include "Core/HW/Memmap.h"
#include "VideoCommon/BPMemory.h"

View File

@ -2,7 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#include "Core/HW/Memmap.h"
#include "VideoCommon/CPMemory.h"
#include "VideoCommon/DataReader.h"