diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2024-05-21 17:18:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 10:18:14 -0500 |
commit | 9c88a48a731a53accfc88a52163f5fc3b26bac6e (patch) | |
tree | d4fea415e167d3725904cf50fcfc9b1865d1d798 /etc | |
parent | 4bf5cc9a9a0517110e9a5517fb75b9184ea74855 (diff) | |
download | spack-9c88a48a731a53accfc88a52163f5fc3b26bac6e.tar.gz spack-9c88a48a731a53accfc88a52163f5fc3b26bac6e.tar.bz2 spack-9c88a48a731a53accfc88a52163f5fc3b26bac6e.tar.xz spack-9c88a48a731a53accfc88a52163f5fc3b26bac6e.zip |
Remove mesa18 and libosmesa (#44264)
* Remove mesa18 and libosmesa
mesa18 was introduced in #19528 as a way to maintain the old
autotools build of mesa separate from the new meson build.
We could add a second build system to mesa, but since mesa18 has
been deprecated for a long time, we'll just remove it.
libosmesa was used to multiplex the gl provider between mesa18
and mesa, and is thus unecessary. Remove it to reduce complexity
in the graphical stack.
* Remove references to mesa18 and libosmesa
* vtk: rework dependency on gl and osmesa
* memsurfer: rework dependency on vtk
* visit: minimal fix to avoid having both osmesa and glx
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/packages.yaml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/spack/defaults/packages.yaml b/etc/spack/defaults/packages.yaml index d637f3c93e..581b01e1f6 100644 --- a/etc/spack/defaults/packages.yaml +++ b/etc/spack/defaults/packages.yaml @@ -38,10 +38,9 @@ packages: lapack: [openblas, amdlibflame] libc: [glibc, musl] libgfortran: [ gcc-runtime ] - libglx: [mesa+glx, mesa18+glx] + libglx: [mesa+glx] libifcore: [ intel-oneapi-runtime ] libllvm: [llvm] - libosmesa: [mesa+osmesa, mesa18+osmesa] lua-lang: [lua, lua-luajit-openresty, lua-luajit] luajit: [lua-luajit-openresty, lua-luajit] mariadb-client: [mariadb-c-client, mariadb] |