From: Laurent Carlier Date: Fri, 22 Jun 2012 13:03:49 +0000 (+0200) Subject: automake: add missing inclusion of GL headers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=78ac9af58021b7cc649c35fda112f61c98b31766;p=mesa.git automake: add missing inclusion of GL headers Building fail when GL headers are not installed in the system, so add inclusion of these headers. Signed-off-by: Brian Paul --- diff --git a/src/mesa/x86-64/Makefile.am b/src/mesa/x86-64/Makefile.am index 79cbb53cde7..baeb4b65ea7 100644 --- a/src/mesa/x86-64/Makefile.am +++ b/src/mesa/x86-64/Makefile.am @@ -22,6 +22,7 @@ if HAVE_X86_64_ASM AM_CPPFLAGS = \ + -I$(top_srcdir)/include \ -I$(top_srcdir)/src/mesa \ -I$(top_srcdir)/src/mapi \ $(API_DEFINES) \ diff --git a/src/mesa/x86/Makefile.am b/src/mesa/x86/Makefile.am index f241de50567..5976bb47c5b 100644 --- a/src/mesa/x86/Makefile.am +++ b/src/mesa/x86/Makefile.am @@ -22,6 +22,7 @@ if HAVE_X86_ASM AM_CPPFLAGS = \ + -I$(top_srcdir)/include \ -I$(top_srcdir)/src/mesa \ -I$(top_srcdir)/src/mapi \ $(API_DEFINES) \