mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-04 16:06:13 +00:00
Android buildfixing
This commit is contained in:
parent
21a9fa2645
commit
4a208872c5
@ -62,7 +62,6 @@ LOCAL_SRC_FILES :=\
|
||||
image/png_load.cpp \
|
||||
ui/view.cpp \
|
||||
ui/viewgroup.cpp \
|
||||
ui/drawing.cpp \
|
||||
ui/ui.cpp \
|
||||
ui/ui_context.cpp \
|
||||
ui/screen.cpp \
|
||||
@ -71,7 +70,7 @@ LOCAL_SRC_FILES :=\
|
||||
util/text/utf8.cpp
|
||||
|
||||
LOCAL_CFLAGS := -O3 -DGL_GLEXT_PROTOTYPES -DUSING_GLES2 -fsigned-char -fno-strict-aliasing
|
||||
LOCAL_CPPFLAGS := -fno-exceptions -std=gnu++11
|
||||
LOCAL_CPPFLAGS := -fno-exceptions -std=gnu++11 -frtti
|
||||
LOCAL_LDLIBS := -lz
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/ext/libzip
|
||||
|
||||
|
@ -20,7 +20,7 @@ class Buffer {
|
||||
char *Append(size_t length) { return Append((ssize_t)length); }
|
||||
|
||||
// These work pretty much like you'd expect.
|
||||
void Append(const char *str); // str null-terminated. The null is not copied.
|
||||
void Append(const char *str); // str null-terminated. The null is not copied.
|
||||
void Append(const std::string &str);
|
||||
|
||||
// Various types. Useful for varz etc. Appends a string representation of the
|
||||
|
@ -48,4 +48,4 @@ enum {
|
||||
// Watch out! If the image has mipmaps, multiple values will be written
|
||||
// to width, height, and image, as if they were arrays, up to 12 (max texture size is 4096 which is 2^12).
|
||||
int LoadZIM(const char *filename, int *width, int *height, int *flags, uint8_t **image);
|
||||
int LoadZIMPtr(char *zim, int datasize, int *width, int *height, int *flags, uint8_t **image);
|
||||
int LoadZIMPtr(char *zim, int datasize, int *width, int *height, int *flags, uint8_t **image);
|
@ -183,7 +183,6 @@ Download::~Download() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
void Download::Do() {
|
||||
Url fileUrl(url_);
|
||||
if (!fileUrl.Valid()) {
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef _NET_HTTP_HTTP_CLIENT
|
||||
#define _NET_HTTP_HTTP_CLIENT
|
||||
|
||||
#include <memory>
|
||||
#include "base/basictypes.h"
|
||||
#include "base/buffer.h"
|
||||
#include "thread/thread.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user