diff options
| author | Glenn Rice <glennricster@gmail.com> | 2010-02-22 00:39:38 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2010-02-22 00:39:38 +0000 |
| commit | 73d575c5c2fe6bf15e29055a438dae8ae7aa0489 (patch) | |
| tree | 2aed1678fa0a209fa61ef1db1451dbc951726729 /Source/Core/VideoCommon | |
| parent | 74a6b5638f5e3159b2112dde514da4a23bf5605b (diff) | |
On linux don't compile and link against lzo, soil, and sfml "Externals."
Instead use system libraries liblzo2-dev, libsoil-dev, and libsfml-dev
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5105 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/Src/HiresTextures.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/Src/HiresTextures.cpp b/Source/Core/VideoCommon/Src/HiresTextures.cpp index 4539e54357..e973e8d49f 100644 --- a/Source/Core/VideoCommon/Src/HiresTextures.cpp +++ b/Source/Core/VideoCommon/Src/HiresTextures.cpp @@ -20,7 +20,11 @@ #include <cstring> #include <utility> #include <algorithm> +#ifdef __linux__ +#include <SOIL/SOIL.h> +#else #include "SOIL.h" +#endif #include "CommonPaths.h" #include "FileUtil.h" #include "FileSearch.h" |
