Re: [Mesa-dev] [PATCH] mesa: fix Windows build error related to getuid()

2017-04-19 Thread Timothy Arceri
Thanks Brian. Reviewed-by: Timothy Arceri On 20/04/17 04:14, Brian Paul wrote: getuid() and geteuid() are not present on Windows. --- src/mesa/main/context.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 984

[Mesa-dev] [PATCH] mesa: fix Windows build error related to getuid()

2017-04-19 Thread Brian Paul
getuid() and geteuid() are not present on Windows. --- src/mesa/main/context.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 984c9e0..3570f94 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@