diff options
| author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2025-06-19 16:32:42 +0200 |
|---|---|---|
| committer | Marge Bot <marge-bot@fdo.invalid> | 2025-06-23 06:42:50 +0000 |
| commit | 34b8aeec4183d942144de69aa28784fbc697af03 (patch) | |
| tree | 9ee900d673229830260a1c547511ec611cceb690 | |
| parent | 4e25a4ce1e3b678d926fede0c5d592ef7da3e36c (diff) | |
meson: remove unused osmesa option
Looks like this was forgot during the removal.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35638>
| -rw-r--r-- | .github/workflows/macos.yml | 2 | ||||
| -rw-r--r-- | meson.options | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d1b66ef4cad..7a24ce1329b 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -42,7 +42,7 @@ jobs: [binaries] llvm-config = '/usr/local/opt/llvm/bin/llvm-config' EOL - $MESON_EXEC . build --native-file=native_config -Dmoltenvk-dir=$(brew --prefix molten-vk) -Dbuild-tests=true -Dosmesa=true -Dgallium-drivers=swrast,zink -Dglx=${{ matrix.glx_option }} + $MESON_EXEC . build --native-file=native_config -Dmoltenvk-dir=$(brew --prefix molten-vk) -Dbuild-tests=true -Dgallium-drivers=swrast,zink -Dglx=${{ matrix.glx_option }} - name: Build run: $MESON_EXEC compile -C build - name: Test diff --git a/meson.options b/meson.options index 0822b588627..20001bcaa5f 100644 --- a/meson.options +++ b/meson.options @@ -534,14 +534,6 @@ option( ) option( - 'osmesa', - type : 'boolean', - value : false, - deprecated : true, - description : 'Does nothing, left here for a while to avoid build breakages.', -) - -option( 'tools', type : 'array', value : [], |