summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/paths.cpp3
-rw-r--r--src/utils/stringutils.cpp1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp
index 11ad19a2e..f67a6c473 100644
--- a/src/utils/paths.cpp
+++ b/src/utils/paths.cpp
@@ -48,12 +48,13 @@
std::string getRealPath(const std::string &str)
{
std::string path;
-#if defined __OpenBSD__
+#if defined(__OpenBSD__) || defined(__ANDROID__)
char *realPath = (char*)calloc(PATH_MAX, sizeof(char));
realpath(str.c_str(), realPath);
#else
char *realPath = realpath(str.c_str(), nullptr);
#endif
+
if (!realPath)
return "";
path = realPath;
diff --git a/src/utils/stringutils.cpp b/src/utils/stringutils.cpp
index 2ceab5b92..c201e9593 100644
--- a/src/utils/stringutils.cpp
+++ b/src/utils/stringutils.cpp
@@ -29,6 +29,7 @@
#include <list>
#include <sys/time.h>
+#include <ctype.h>
#include "debug.h"