From 9b09ff673954c459218e2c664386286ca68aae51 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 24 Jul 2021 23:55:26 +0200 Subject: [PATCH] gnu: esmtp: Always assume that -lesmtp will work. libesmtp 1.1.0 removed the libesmtp-config helper in favour of pkg-config. This does not use that (I lack the chops and the patience). Assume that the build environment has everything set up for us, which is true on Guix. --- configure.ac | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 9252ec2..7ccf71a 100644 --- a/configure.ac +++ b/configure.ac @@ -32,15 +32,8 @@ then AC_CHECK_HEADER(libesmtp.h, ,[AC_MSG_ERROR([libesmtp.h not found in $with_libesmtp])]) fi AC_MSG_CHECKING(for libESMTP) -if libesmtp-config --version > /dev/null 2>&1 -then - AC_MSG_RESULT(yes) - CFLAGS="$CFLAGS `libesmtp-config --cflags`" - LIBS="$LIBS `libesmtp-config --libs`" -else - AC_MSG_RESULT(no) - AC_MSG_ERROR(libESMTP library not found) -fi +AC_MSG_RESULT(assumed) +LIBS="$LIBS -lesmtp" jrf_FUNC_GETOPT -- 2.32.0 '/guix/refs/?id=fb2347f6d161db0c0ec5fd8fd952ab8cdb7c2738'>refslogtreecommitdiff
path: root/gnu/packages/gcc.scm
AgeCommit message (Expand)Author
2024-08-19gnu: gcc@12: Update to 12.4.0....fanquake
2024-08-05gnu: gcc-14: Update to 14.2.0....Michael Ford
2024-07-02gnu: Add libgccjit-14....Zheng Junjie
2024-07-02gnu: Add gccgo-14....Zheng Junjie
2024-07-02gnu: Add gcc-14....Zheng Junjie
2024-06-11gnu: gcc: Add tuning targets for powerpc64le-linux....Efraim Flashner
2024-05-30gnu: gcc-13: Remove unneeded patch for i586-gnu....Efraim Flashner
2024-05-30gnu: gccgo-12: Fix building on riscv64-linux....Efraim Flashner
2024-05-22gnu: gcc-13: Update to 13.3.0....Michael Ford
2024-04-04gnu: libstdc++: Support cross-compilation to powerpc64le-linux-gnu....Ludovic Courtès
2024-03-07cpu: Enable tuning for i686-linux....Efraim Flashner
2024-03-07cpu: Rename x86-64-v1 to x86-64....Efraim Flashner
2024-03-05gnu: gcc@11: fix 'compiler-cpu-architectures' property....Zheng Junjie
2024-02-13gnu: gcc-4.8: Fix building....Efraim Flashner
2024-01-26gnu: Add gdc alias....Maxim Cournoyer
2024-01-18gnu: Add gfortran-9....Ricardo Wurmus
2024-01-04gnu: Add support for x86_64-linux-gnux32....Efraim Flashner
2024-01-01gnu: gccgo-12: Fix building with 1 core....Efraim Flashner