mirror of https://github.com/PCSX2/pcsx2.git
We'll need to include signal.h if we're raising signals.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2398 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
de637fc921
commit
ca02bffc6c
|
@ -16,6 +16,9 @@
|
|||
#ifndef __PCSX2DEFS_H__
|
||||
#define __PCSX2DEFS_H__
|
||||
|
||||
// Indicate that this is the wx port to the plugins.
|
||||
#define WX_PCSX2
|
||||
|
||||
#if defined (__linux__) && !defined(__LINUX__) // some distributions are lower case
|
||||
# define __LINUX__
|
||||
#endif
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
#include "Threading.h"
|
||||
#include "TlsVariable.inl"
|
||||
|
||||
#if defined(__UNIX__)
|
||||
#include <signal.h>
|
||||
#endif
|
||||
|
||||
wxString GetEnglish( const char* msg )
|
||||
{
|
||||
return fromUTF8(msg);
|
||||
|
|
Loading…
Reference in New Issue