Fix build with Poppler 0.86 and later. Taken from Arch Linux, but adjusted to patch the versioned Poppler files, as upstream applies it after copying them in place. https://git.archlinux.org/svntogit/packages.git/tree/trunk/texlive-poppler-0.86.patch?h=packages/texlive-bin --- a/texk/web2c/pdftexdir/pdftoepdf-poppler0.76.0.cc 2020-03-03 21:11:35.102711802 +0000 +++ b/texk/web2c/pdftexdir/pdftoepdf-poppler0.76.0.cc 2020-03-03 21:13:13.057420111 +0000 @@ -757,7 +757,7 @@ if (page_name) { // get page by name GString name(page_name); - LinkDest *link = pdf_doc->doc->findDest(&name); + LinkDest *link = pdf_doc->doc->findDest(&name).get(); if (link == 0 || !link->isOk()) pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); Ref ref = link->getPageRef(); n> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/openldap.scm
AgeCommit message (Expand)Author
2024-08-31gnu: 389-ds-base: Fix build....* gnu/packages/openldap.scm (389-ds-base)[source]: Add snippet. [inputs]: Add libxcrypt. Change-Id: I5ddb30e8a0ae23e7795a0a9a9e3f00b48379e3e8 宋文武
2024-08-31gnu: 389-ds-base: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/openldap.scm (389-ds-base)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Maxime Devos
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer