virtualgl: Change virtual jpeg dependency to libjpeg-turbo dep (#19795)

See #19784

virtualgl CMake system is looking for a specific libjpeg-turbo include
file, not present in libjpeg (currently the only other jpeg provider)
This commit is contained in:
Tom Payerle 2020-11-06 21:47:09 -05:00 committed by GitHub
parent 319c4f2e9e
commit 07b1ddee23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,5 +18,6 @@ class Virtualgl(CMakePackage):
version('2.5.2', sha256='4f43387678b289a24139c5b7c3699740ca555a9f10011c979e51aa4df2b93238')
depends_on("jpeg")
# This package will only work with libjpeg-turbo, not other jpeg providers
depends_on("libjpeg-turbo")
depends_on("glu")