From 19ed4df1eba475b9ce1b9e483274755e9b081d8c Mon Sep 17 00:00:00 2001 From: SeokYeon Hwang Date: Thu, 24 Jan 2013 20:31:36 +0900 Subject: [PATCH] emulator: Clean up PATH_MAX for win32(mingw) Signed-off-by: SeokYeon Hwang --- tizen/src/maru_common.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tizen/src/maru_common.h b/tizen/src/maru_common.h index 96c9104b2b..3aacef95c7 100644 --- a/tizen/src/maru_common.h +++ b/tizen/src/maru_common.h @@ -49,11 +49,13 @@ #include "config-host.h" +#if !defined(PATH_MAX) #if defined(MAX_PATH) #define PATH_MAX MAX_PATH -#elif !defined(PATH_MAX) +#else #define PATH_MAX 256 #endif +#endif // W/A for preserve larger continuous heap for RAM. extern void *preallocated_ptr; -- 2.34.1