Skip to content
Snippets Groups Projects
Commit 4a2aa2f9 authored by Edric Milaret's avatar Edric Milaret Committed by gerrit2
Browse files

ios: fix fileutils

Change-Id: Ib3d4bb4c5f5a0fe87e8d772e3fa7f77b5aee2614
Tuleap: #313
parent fba73912
Branches
Tags
No related merge requests found
......@@ -28,6 +28,10 @@
#include "logger.h"
#include "intrin.h"
#ifdef __APPLE__
#include <TargetConditionals.h>
#endif
#ifdef __ANDROID__
#include "client/ring_signal.h"
#endif
......@@ -154,7 +158,7 @@ create_pidfile()
std::string
expand_path(const std::string &path)
{
#if defined __ANDROID__ || defined WIN32
#if defined __ANDROID__ || defined WIN32 || TARGET_OS_IPHONE
RING_ERR("Path expansion not implemented, returning original");
return path;
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment