Make stuff build for Node and Android

This commit is contained in:
Scott Kyle 2016-06-14 17:22:04 -07:00
parent 5b9fbbb0ac
commit af52e9f437
3 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,7 @@ LOCAL_SRC_FILES := \
src/object-store/src/impl/transact_log_handler.cpp \
src/object-store/src/impl/android/external_commit_helper.cpp \
src/object-store/src/impl/android/weak_realm_notifier.cpp \
src/object-store/src/util/format.cpp \
vendor/base64.cpp
LOCAL_C_INCLUDES := src

View File

@ -23,7 +23,8 @@
"../object-store/src/impl/apple/external_commit_helper.cpp",
"../object-store/src/impl/node/weak_realm_notifier.cpp",
"../object-store/src/parser/parser.cpp",
"../object-store/src/parser/query_builder.cpp"
"../object-store/src/parser/query_builder.cpp",
"../object-store/src/util/format.cpp"
],
"include_dirs": [
"..",

View File

@ -23,6 +23,7 @@
#include <errno.h>
#include <fcntl.h>
#include <sstream>
#include <stdlib.h>
#include <sys/epoll.h>
#include <sys/time.h>
#include <sys/stat.h>