Module: Mesa Branch: master Commit: 78ac9af58021b7cc649c35fda112f61c98b31766 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=78ac9af58021b7cc649c35fda112f61c98b31766
Author: Laurent Carlier <[email protected]> Date: Fri Jun 22 15:03:49 2012 +0200 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 <[email protected]> --- src/mesa/x86-64/Makefile.am | 1 + src/mesa/x86/Makefile.am | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/x86-64/Makefile.am b/src/mesa/x86-64/Makefile.am index 79cbb53..baeb4b6 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 f241de5..5976bb4 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) \ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
