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:
arcum42 2009-12-25 18:58:25 +00:00
parent de637fc921
commit ca02bffc6c
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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);