Copied from Debian. Description: Sets the soname to liba52-$(VERSION).so Bug-Debian: http://bugs.debian.org/401636 Author: Daniel Baumann , Dmitrijs Ledkovs --- liba52/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Index: a52dec-deb/liba52/Makefile.am =================================================================== --- a52dec-deb.orig/liba52/Makefile.am 2009-12-05 02:52:12.000000000 +0000 +++ a52dec-deb/liba52/Makefile.am 2009-12-05 03:23:47.000000000 +0000 @@ -4,6 +4,6 @@ liba52_la_SOURCES = bitstream.c imdct.c bit_allocate.c parse.c downmix.c liba52_la_LIBADD = @LIBA52_LIBS@ -lm -liba52_la_LDFLAGS = -no-undefined +liba52_la_LDFLAGS = -no-undefined -release @VERSION@ EXTRA_DIST = configure.incl a52_internal.h bitstream.h tables.h ption> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-04-21tests: Fork and exec a new Guile for the marionette REPL....By merely forking PID 1, details from PID 1 (shepherd) would leak into the marionette process, such as the set of modules in scope and state inherited from the shepherd process (<service> instances, fibers, etc.). Running a fresh Guile instance avoids that. * gnu/tests.scm (marionette-program): New procedure. (marionette-shepherd-service): Change 'start' to use 'make-forkexec-constructor', and run the result of 'marionette-program'. Ludovic Courtès
2022-05-18services: Add more description fields....* gnu/services.scm (simple-service): Add 'description' field. * gnu/services/base.scm (udev-rules-service): Likewise. * gnu/system/install.scm (configuration-template-service-type): Likewise. * gnu/tests.scm (marionette-service-type): Likewise. Ludovic Courtès