texlive: restrict poppler version (#24222)

Restrict poppler version for texlive to poppler@:0.84
Should fix #19946

See also https://github.com/NixOS/nixpkgs/issues/79170
Looks like poppler@0.84 upgraded their header files to use the C++ cstdio
instead of the C stdio.h.  Since TeX is using C, not C++. this causes problems.
This commit is contained in:
Tom Payerle 2021-06-11 11:01:24 -04:00 committed by GitHub
parent a588d5dc58
commit b4bf0c3476
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,7 +113,7 @@ class Texlive(AutotoolsPackage):
depends_on('mpfr', when='@2019:')
depends_on('perl', when='@2019:')
depends_on('pixman', when='@2019:')
depends_on('poppler', when='@2019:')
depends_on('poppler@:0.84', when='@2019:')
depends_on('teckit', when='@2019:')
depends_on('zlib', when='@2019:')
depends_on('zziplib', when='@2019:')