mesa: add dependency on zlib (#21325)

When installing mesa in an offline environment, mesa tries to download zlib.
This commit is contained in:
bryanherman 2021-01-27 09:19:03 -05:00 committed by GitHub
parent 0efe54f722
commit fbdc8b65b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,7 @@ class Mesa(MesonPackage):
depends_on('python@3:', type='build')
depends_on('py-mako@0.8.0:', type='build')
depends_on('expat')
depends_on('zlib@1.2.3:')
# Internal options
variant('llvm', default=True, description="Enable LLVM.")