2016-08-13 17:31:43 +02:00
|
|
|
--- src/gba/GBALink.cpp.orig 2016-08-13 15:20:47 UTC
|
|
|
|
+++ src/gba/GBALink.cpp
|
2014-06-20 12:20:17 +02:00
|
|
|
@@ -2,9 +2,10 @@
|
|
|
|
// with major changes by tjm
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
+#include <sys/param.h>
|
|
|
|
|
|
|
|
// malloc.h does not seem to exist on Mac OS 10.7
|
|
|
|
-#ifdef __APPLE__
|
2015-11-13 09:53:52 +01:00
|
|
|
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__)
|
2014-06-20 12:20:17 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#else
|
|
|
|
#include <malloc.h>
|
2016-08-13 17:31:43 +02:00
|
|
|
@@ -89,7 +90,7 @@ bool speedhack = true;
|
|
|
|
#include "GBALink.h"
|
|
|
|
#include "GBASockClient.h"
|
|
|
|
|
|
|
|
-#include <SFML/Network.hpp>
|
|
|
|
+#include <SFML1/Network.hpp>
|
|
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
#include <libintl.h>
|