Copied from Debian. Description: Explicitely link against -lm Bug-Debian: http://bugs.debian.org/553595 Author: Fabian Greffrath , Dmitrijs Ledkovs --- libao/Makefile.am | 1 + src/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,9 @@ -CFLAGS = @A52DEC_CFLAGS@ +AM_CFLAGS = @A52DEC_CFLAGS@ bin_PROGRAMS = a52dec extract_a52 a52dec_SOURCES = a52dec.c getopt.c gettimeofday.c a52dec_LDADD = $(top_builddir)/liba52/liba52.la \ - $(top_builddir)/libao/libao.a @LIBAO_LIBS@ + $(top_builddir)/libao/libao.a @LIBAO_LIBS@ -lm extract_a52_SOURCES = extract_a52.c getopt.c man_MANS = a52dec.1 extract_a52.1 --- a/liba52/Makefile.am +++ b/liba52/Makefile.am @@ -1,4 +1,4 @@ -CFLAGS = @CFLAGS@ @LIBA52_CFLAGS@ +AM_CFLAGS = @CFLAGS@ @LIBA52_CFLAGS@ lib_LTLIBRARIES = liba52.la ized Guix
aboutsummaryrefslogtreecommitdiff
pan title='2021-12-23 10:54:00 +0100'>2021-12-23 >Ludovic Courtès
AgeCommit message (Expand)Author
Remove VM generation dead-code....This code duplicates the (gnu system image) and (gnu build image) code. Using VM for image generation is not needed, not portable and really slow. Remove all the VM image generation code to make sure that only the image API is used. * gnu/build/vm.scm: Remove it. Move the qemu-command procedure to ... * gnu/build/marionette.scm: ... here. * gnu/local.mk (GNU_SYSTEM_MODULES): Adapt it. * tests/modules.scm: Ditto. * gnu/tests/install.scm: Ditto. * gnu/system/vm.scm: Adapt it and remove expression->derivation-in-linux-vm, qemu-img, system-qemu-image/shared-store and system-docker-image procedures. * doc/guix.texi (G-Expressions): Adapt it. Mathieu Othacehe
2022-04-10services: herd: Adjust to <live-service> changes....This is a followup to a2c759c8304c461d096ab763568e7f71546ff4e8. * guix/scripts/system/reconfigure.scm (running-services): Fill in the 'transient?' field of <live-service>. * tests/services.scm ("shepherd-service-upgrade: one unchanged, one upgraded, one new") ("shepherd-service-upgrade: service depended on is not unloaded") ("shepherd-service-upgrade: obsolete services that depend on each other"): Adjust calls to 'live-service'. Ludovic Courtès