<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From e3e4b146cd9f75cb05a49f6c58418dee9db16ccf Mon Sep 17 00:00:00 2001
From: Treeve Jelbert &lt;treeve@sourcemage.org&gt;
Date: Wed, 18 Oct 2017 20:30:00 +0200
Subject: [PATCH 2/4] install GL headers in .mesa

---
 include/meson.build | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/meson.build b/include/meson.build
index b4555eabbf..25d575b1be 100644
--- a/include/meson.build
+++ b/include/meson.build
@@ -50,16 +50,16 @@ endif
 if with_opengl
   install_headers(
     'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
-    subdir : 'GL',
+    subdir : 'GL/.mesa',
   )
 endif
 
 if with_glx != 'disabled'
-  install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL')
+  install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL/.mesa')
 endif
 
 if with_osmesa != 'none'
-  install_headers('GL/osmesa.h', subdir : 'GL')
+  install_headers('GL/osmesa.h', subdir : 'GL/.mesa')
 endif
 
 if with_egl
-- 
2.17.0

</pre></body></html>