Our llvm does not contain a single top-level library, so consult llvm-config for the libraries that need to be linked against. --- clamav-0.100.2/libclamav/c++/configure.ac 2018-09-19 14:29:07.000000000 -0500 +++ clamav-0.100.2/libclamav/c++/configure.ac 2018-10-06 21:45:09.377249158 -0500 @@ -105,7 +105,7 @@ if test "x$llvm_linking" = "xdynamic"; then AC_SUBST(LLVMCONFIG_LDFLAGS, [`$llvmconfig --ldflags`]) - AC_SUBST(LLVMCONFIG_LIBS, [-lLLVM-$llvmver]) + AC_SUBST(LLVMCONFIG_LIBS, [`$llvmconfig --libs $llvmcomp`]) AC_SUBST(LLVMCONFIG_LIBFILES, []) else if test $llvmver_test -ge 350; then 69688e510df42f2'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/ui.scm
AgeCommit message (Collapse)Author
2022-12-13ui: Take package upstream name into account when searching.Lars-Dominik Braun
* guix/ui.scm (%package-metrics): Add PACKAGE-UPSTREAM-NAME*. * tests/ui.scm ("package-relevance and upstream name"): New test. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2022-06-16ui: Improve pager selection logic when less is not installed.Taiju HIGASHI
* guix/ui.scm (find-available-pager): New procedure. (call-with-paginated-output-port): Use it. * guix/utils.scm (call-with-environment-variables): Allow clearing of specified environment variables. * tests/ui.scm (make-empty-file, assert-equals-find-available-pager): New procedures. ("find-available-pager, GUIX_PAGER takes precedence") ("find-available-pager, PAGER takes precedence") ("find-available-pager, 'less' takes precedence") ("find-available-pager, 'more' takes precedence") ("find-available-pager, no pager"): New tests. Co-authored-by: Ludovic Courtès <ludo@gnu.org>