mirror of
https://github.com/love2d/love.git
synced 2026-08-14 01:20:56 +02:00
Make sure android includes the right headers for System.cpp too
Hopefully.
This commit is contained in:
@@ -26,20 +26,20 @@
|
||||
#include <CoreServices/CoreServices.h>
|
||||
#elif defined(LOVE_IOS)
|
||||
#include "common/ios.h"
|
||||
#elif defined(LOVE_ANDROID)
|
||||
#include "common/android.h"
|
||||
#elif defined(LOVE_LINUX)
|
||||
#elif defined(LOVE_LINUX) || defined(LOVE_ANDROID)
|
||||
#include <spawn.h>
|
||||
//#include <stdlib.h>
|
||||
//#include <unistd.h>
|
||||
#include <signal.h>
|
||||
#include <sys/wait.h>
|
||||
#include <errno.h>
|
||||
#elif defined(LOVE_WINDOWS)
|
||||
#include "common/utf8.h"
|
||||
#include <shlobj.h>
|
||||
#include <shellapi.h>
|
||||
#pragma comment(lib, "shell32.lib")
|
||||
#endif
|
||||
#if defined(LOVE_ANDROID)
|
||||
#include "common/android.h"
|
||||
#endif
|
||||
|
||||
#if defined(LOVE_LINUX)
|
||||
static void sigchld_handler(int sig)
|
||||
|
||||
Reference in New Issue
Block a user