Python: Fix build
Vicki Pfau vi@endrift.com
Thu, 02 May 2019 18:33:04 -0700
4 files changed,
4 insertions(+),
4 deletions(-)
M
src/platform/python/_builder.h
→
src/platform/python/_builder.h
@@ -33,7 +33,7 @@ void free(void*);
#include <limits.h> -#include "flags.h" +#include <mgba/flags.h> #include <mgba/core/blip_buf.h> #include <mgba/core/cache-set.h>
M
src/platform/python/_builder.py
→
src/platform/python/_builder.py
@@ -18,7 +18,7 @@
ffi.set_source("mgba._pylib", """ #define static #define inline -#include "flags.h" +#include <mgba/flags.h> #define OPAQUE_THREADING #include <mgba/core/blip_buf.h> #include <mgba/core/cache-set.h>
M
src/platform/python/lib.h
→
src/platform/python/lib.h
@@ -1,4 +1,4 @@
-#include "flags.h" +#include <mgba/flags.h> struct VFile;
M
src/platform/python/sio.c
→
src/platform/python/sio.c
@@ -3,7 +3,7 @@ *
* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "flags.h" +#include <mgba/flags.h> #define CREATE_SHIM(PLAT, NAME, RETURN) \ RETURN _py ## PLAT ## SIOPythonDriver ## NAME (void* driver); \