diff options
author | Laurent Carlier <[email protected]> | 2012-06-22 15:03:49 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-06-22 17:24:37 -0600 |
commit | 78ac9af58021b7cc649c35fda112f61c98b31766 (patch) | |
tree | 2b1644234f2a2dee0a42ff2c124d71d059021c9c | |
parent | cbffaf20e9e6154310ba68bb2b44adc37ba83bcd (diff) |
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]>
-rw-r--r-- | src/mesa/x86-64/Makefile.am | 1 | ||||
-rw-r--r-- | 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 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) \ |