diff options
author | Dylan Baker <[email protected]> | 2017-11-20 16:34:28 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-11-22 12:47:43 -0800 |
commit | c2dad6ca0a120ae133fe32925c20e1e9856132d9 (patch) | |
tree | 0f217c5900128738ed10974ab0e54e925276c99b /src/glx | |
parent | 33627d23d03ee6273c5aa874a85978777271582f (diff) |
meson: replace with_*dri with with_dri_platform
This fixes the windows and macos stubs to be consistent with the *nix
path.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/meson.build b/src/glx/meson.build index 43f8fb24efd..deef3ed2235 100644 --- a/src/glx/meson.build +++ b/src/glx/meson.build @@ -95,9 +95,9 @@ if with_dri3 files_libglx += files('dri3_glx.c', 'dri3_priv.h') endif -if with_appledri +if with_dri_platform == 'apple' files_libglx += files('applegl_glx.c') -elif with_windowsdri +elif with_dri_platform == 'windows' files_libglx += files('driwindows_glx.c') # TODO #extra_libs_libglx += [ |