mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 22:19:07 +00:00
Fix build on linux
This commit is contained in:
parent
ab752e1156
commit
373ccff7e4
2 changed files with 8 additions and 10 deletions
|
@ -8,10 +8,6 @@
|
||||||
#include "Network.h"
|
#include "Network.h"
|
||||||
#include "tinyxml.h"
|
#include "tinyxml.h"
|
||||||
|
|
||||||
#ifdef BBGE_BUILD_UNIX
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
using Network::NetEvent;
|
using Network::NetEvent;
|
||||||
using Network::NE_ABORT;
|
using Network::NE_ABORT;
|
||||||
using Network::NE_FINISH;
|
using Network::NE_FINISH;
|
||||||
|
|
|
@ -33,6 +33,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#if defined(BBGE_BUILD_UNIX)
|
#if defined(BBGE_BUILD_UNIX)
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <errno.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(BBGE_BUILD_MACOSX)
|
#if defined(BBGE_BUILD_MACOSX)
|
||||||
|
|
Loading…
Reference in a new issue