mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Allow full-length Unix pathnames.
Move bits of HAVE_OPENCL/HAVE_WX for OS X from SConstruct to header files. Use /usr/lib/libz on OS X now that we no longer have -L/opt/local/lib in the library path. It is still possible that we could pick up a libz in /usr/local/lib that would make the application non-redistributable, but the danger is much less than previously. Also bits of minor portability cleanup. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5868 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -11,6 +11,7 @@
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include "Common.h"
|
||||
#include "CommonTypes.h"
|
||||
|
||||
// Plugin communication. I place this here rather in Common.h to rebuild less if any of this is changed
|
||||
@ -90,11 +91,6 @@ typedef struct
|
||||
char Name[100]; // Name of the DLL
|
||||
} PLUGIN_INFO;
|
||||
|
||||
#ifndef MAX_PATH
|
||||
// apparently a windows-ism.
|
||||
#define MAX_PATH 260
|
||||
#endif
|
||||
|
||||
// TODO: Remove, or at least remove the void pointers and replace with data.
|
||||
// This design is just wrong and ugly - the plugins shouldn't have this much access.
|
||||
typedef struct
|
||||
|
Reference in New Issue
Block a user