From: Yaakov Selkowitz Date: Thu, 24 Jul 2014 13:16:41 +0000 (+0100) Subject: os_process.c: Add cygwin as an expected platform X-Git-Tag: upstream/10.3~836 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b12d5f0d002da40c522a95ec92429e30385dcbd6;p=platform%2Fupstream%2Fmesa.git os_process.c: Add cygwin as an expected platform mesa/mesa/src/gallium/auxiliary/os/os_process.c:40:2: warning: #warning unexpected platform in os_process.c [-Wcpp] #warning unexpected platform in os_process.c mesa/mesa/src/gallium/auxiliary/os/os_process.c:77:2: warning: #warning unexpected platform in os_process.c [-Wcpp] #warning unexpected platform in os_process.c Signed-off-by: Yaakov Selkowitz Reviewed-by: Jon TURNEY Reviewed-by: Brian Paul --- diff --git a/src/gallium/auxiliary/os/os_process.c b/src/gallium/auxiliary/os/os_process.c index ef38e1d..3e060b9 100644 --- a/src/gallium/auxiliary/os/os_process.c +++ b/src/gallium/auxiliary/os/os_process.c @@ -32,7 +32,7 @@ #if defined(PIPE_SUBSYSTEM_WINDOWS_USER) # include -#elif defined(__GLIBC__) +#elif defined(__GLIBC__) || defined(__CYGWIN__) # include #elif defined(PIPE_OS_BSD) || defined(PIPE_OS_APPLE) # include @@ -68,7 +68,7 @@ os_get_process_name(char *procname, size_t size) name = lpProcessName; -#elif defined(__GLIBC__) +#elif defined(__GLIBC__) || defined(__CYGWIN__) name = program_invocation_short_name; #elif defined(PIPE_OS_BSD) || defined(PIPE_OS_APPLE) /* *BSD and OS X */