diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2017-10-20 21:48:18 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-10-27 11:06:45 -0700 |
commit | cbbd5bb889a2c271a504c379f36a7cb717a85af4 (patch) | |
tree | 58c7208233c088bdca901498a2ab3ed704469225 /include | |
parent | 7503ab687b3992b0967eafd4fb7372ddb3f4445a (diff) |
meson: build classic osmesa
This builds the classic (non-gallium) osmesa with meson. This has been
tested with the osdemo application from mesa-demos.
v2: - Remove unrelated change
- Add SELinux dependency to osmesa
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/meson.build b/include/meson.build index 88e66a1a8f..b5f533bd18 100644 --- a/include/meson.build +++ b/include/meson.build @@ -55,7 +55,7 @@ if with_glx != 'disabled' install_headers('GL/glx.h', 'GL/glext.h', 'GL/glx_mangle.h', subdir : 'GL') endif -if with_osmesa +if with_osmesa != 'none' install_headers('GL/osmesa.h', subdir : 'GL') endif |