From: Brian Paul Date: Tue, 3 Mar 2015 16:51:19 +0000 (-0700) Subject: glx: use ARRAY_SIZE from macros.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0339e7dbdab2ee3a4776e50461bc4697a23b57b6;p=mesa.git glx: use ARRAY_SIZE from macros.h Reviewed-by: Jose Fonseca --- diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am index 3ea1b30d7cf..6e50e096fa2 100644 --- a/src/glx/Makefile.am +++ b/src/glx/Makefile.am @@ -35,6 +35,7 @@ endif AM_CFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/include/GL/internal \ + -I$(top_srcdir)/src \ -I$(top_srcdir)/src/loader \ -I$(top_srcdir)/src/mapi \ -I$(top_srcdir)/src/mapi/glapi \ diff --git a/src/glx/SConscript b/src/glx/SConscript index 473c5ab6ac8..b91c0bdd758 100644 --- a/src/glx/SConscript +++ b/src/glx/SConscript @@ -11,6 +11,7 @@ env.Prepend(CPPPATH = [ '.', # the build//glx/ directory '#include', '#include/GL/internal', + '#src/', '#src/loader', '#src/mesa', '#src/mapi', diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index aaca989f1e3..a140c8708ca 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -56,10 +56,10 @@ #if defined( HAVE_PTHREAD ) # include #endif +#include "util/macros.h" #include "glxextensions.h" -#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) #define GLX_MAJOR_VERSION 1 /* current version numbers */ #define GLX_MINOR_VERSION 4