parent
675899a521
commit
44b206a3fa
|
@ -1,4 +1,5 @@
|
||||||
import os
|
import os
|
||||||
|
import platform
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
@ -135,7 +136,12 @@ def configure(env):
|
||||||
env.Append(CPPPATH=['#platform/server'])
|
env.Append(CPPPATH=['#platform/server'])
|
||||||
env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED'])
|
env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED'])
|
||||||
env.Append(LIBS=['pthread'])
|
env.Append(LIBS=['pthread'])
|
||||||
env.Append(LIBS=['dl'])
|
|
||||||
|
if (platform.system() == "Linux"):
|
||||||
|
env.Append(LIBS=['dl'])
|
||||||
|
|
||||||
|
if (platform.system().find("BSD") >= 0):
|
||||||
|
env.Append(LIBS=['execinfo'])
|
||||||
|
|
||||||
# Link those statically for portability
|
# Link those statically for portability
|
||||||
if env['use_static_cpp']:
|
if env['use_static_cpp']:
|
||||||
|
|
|
@ -28,4 +28,10 @@
|
||||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
|
|
||||||
|
#ifdef __linux__
|
||||||
#include <alloca.h>
|
#include <alloca.h>
|
||||||
|
#endif
|
||||||
|
#if defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||||
|
#include <stdlib.h>
|
||||||
|
#define PTHREAD_BSD_SET_NAME
|
||||||
|
#endif
|
||||||
|
|
|
@ -32,8 +32,9 @@
|
||||||
#define CRASH_HANDLER_ENABLED 1
|
#define CRASH_HANDLER_ENABLED 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "crash_handler_x11.h"
|
||||||
#include "main/main.h"
|
#include "main/main.h"
|
||||||
#include "os_x11.h"
|
#include "os/os.h"
|
||||||
#include "project_settings.h"
|
#include "project_settings.h"
|
||||||
|
|
||||||
#ifdef CRASH_HANDLER_ENABLED
|
#ifdef CRASH_HANDLER_ENABLED
|
||||||
|
|
Loading…
Reference in New Issue