From 84685930d5cfc7005f3414601230a23e28a18f59 Mon Sep 17 00:00:00 2001 From: Thomas Loimer Date: Tue, 5 Sep 2023 22:02:55 +0200 Subject: [PATCH 1/3] Enable error message for missing libraries Move the check for missing libraries to a place where the queried variables are set. --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 035b9d7..47452c5 100644 --- a/configure.ac +++ b/configure.ac @@ -95,9 +95,6 @@ dnl AC_CHECK_PROG(XDG_MENU, [xdg-desktop-menu], [xdg-desktop-menu]) AC_SEARCH_LIBS([pow], [m])dnl dnl AC_SEARCH_LIBS([deflate], [z]) # libz is not needed. AC_SEARCH_LIBS([FcInit], [fontconfig]) -AS_IF([test "x$ac_cv_search_pow" = xno \ - || test "x$ac_cv_search_png_read_info" = xno], - [AC_MSG_ERROR([Necessary libraries not found.])]) # Checks for header files. @@ -187,6 +184,10 @@ PostScript files. To disable calling ghostscript, set to the empty string, AC_SUBST([gsman]) AM_SUBST_NOTMAKE([gsman]) +AS_IF([test "x$ac_cv_search_pow" = xno \ + || test "x$ac_cv_search_png_read_info" = xno], + [AC_MSG_ERROR([Necessary libraries not found.])]) + # Checks for typedefs, structures, and compiler characteristics. AC_C_BIGENDIAN -- 2.40.1
path: root/gnu/packages/license.scm
AgeCommit message (Expand)Author
2024-12-23gnu: reuse: Update to 5.0.2....* gnu/packages/license.scm (reuse): Update to 5.0.2. [arguments]: Skip test_simple via #:test-flags. [inputs]: Remove python-setuptools; add python-attrs, python-click, python-freezegun and python-tomlkit. [license]: Add cc0 and cc-by-sa4.0. Change-Id: I66b800fcd2ebae694cea51a55d065d2f70236d8b Co-authored-by: Evgeny Pisemsky <mail@pisemsky.site> Maxim Cournoyer
2024-12-13build-system/pyproject: Use python-sans-pip-wrapper as default-python....Also adds python-setuptools and python-wheel to relevant packages, either to native-inputs or to propagated inputs if the pkg_resources Python module is loaded at runtime. * guix/build-system/pyproject.scm (default-python): Default to python-sans-pip-wrapper. Change-Id: I2d986c2225114f54459dd6bb360913106e52cdf4 Lars-Dominik Braun
2024-08-31gnu: licensecheck: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/license.scm (licensecheck)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Maxime Devos
2024-07-03gnu: reuse: Update to 3.0.2....* gnu/packages/license.scm (reuse): Update to 3.0.2. Change-Id: I527df845dcc4deaf1ffae90d6a8e13dc9033d5ad Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Felix Gruber