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
AgeCommit message (Expand)Author
2022-07-08guix: inferior: Fix the behaviour of open-inferior #:error-port....I'm looking at this as the Guix Data Service uses this behaviour to record and display logs from inferior processes. * guix/inferior.scm (open-bidirectional-pipe): Call dup2 for file descriptor 2, passing either the file number for the current error port, or a file descriptor for /dev/null. * tests/inferior.scm ("#:error-port stderr", "#:error-port pipe"): Add two new tests that cover some of the #:error-port behaviour. Christopher Baines
2022-05-20inferior: Close duplicate socketpair file descriptor....* guix/inferior.scm (open-bidirectional-pipe): Pass SOCK_CLOEXEC to 'socketpair'. * tests/inferior.scm ("close-inferior"): Add test. Ludovic Courtès
2021-05-15inferior: Support querying package replacements....I'm looking at this to help with adding support for looking up package replacements to store in the Guix Data Service. * guix/inferior.scm (inferior-package-replacement): New procedure. * tests/inferior.scm ("inferior-package-replacement"): New test. Christopher Baines
2021-04-29inferior: Make sure test refers to guile@3.0....* tests/inferior.scm ("inferior-package-inputs"): Compare with GUILE-3.0-LATEST since that's what 'lookup-inferior-packages' returns. Ludovic Courtès