From 0ddb759991c1b39baf04cbe366328630bceeaca7 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Wed, 28 Dec 2011 00:36:51 -0800 Subject: [PATCH] mesa: Use __builtin_ffsll on Mac OS X. Fixes this GCC warning. arrayobj.c: In function '_mesa_update_array_object_max_element': arrayobj.c:310: warning: implicit declaration of function 'ffsll' Signed-off-by: Vinson Lee Reviewed-by: Brian Paul --- src/mesa/main/imports.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index d5e3859f822..b7e87439f4c 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -568,7 +568,7 @@ _mesa_init_sqrt_table(void); #ifdef __GNUC__ -#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(ANDROID) +#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(ANDROID) || defined(__APPLE__) #define ffs __builtin_ffs #define ffsll __builtin_ffsll #endif -- 2.30.2