Copied from Debian. Description: Disabling -prefer-non-pic which enables -fPIC Bug-Debian: http://bugs.debian.org/401590 Author: Daniel Baumann , Dmitrijs Ledkovs --- liba52/configure.incl | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) Index: a52dec-deb/liba52/configure.incl =================================================================== --- a52dec-deb.orig/liba52/configure.incl 2009-12-05 02:52:12.000000000 +0000 +++ a52dec-deb/liba52/configure.incl 2009-12-05 03:23:45.000000000 +0000 @@ -1,9 +1,6 @@ AC_SUBST([LIBA52_CFLAGS]) AC_SUBST([LIBA52_LIBS]) -dnl avoid -fPIC when possible -LIBA52_CFLAGS="$LIBA52_CFLAGS -prefer-non-pic" - AC_ARG_ENABLE([double], [ --enable-double use double-precision samples]) if test x"$enable_double" = x"yes"; then ect> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-01-20tests: More adjustments to python.scm split....This is a followup to 44d10b1f722856ab8e9b942804aa7ef33e2ef739. * tests/lint.scm: Update imports. Efraim Flashner
2019-01-10guix: lint: Warn only if GitHub URI is not same as the package URI....* guix/scripts/lint.scm (check-github-url): Warn only if the GitHub URI obtained after following redirects is not same as the original URI. * tests/lint.scm ("github-url: already the correct github url"): New test. Arun Isaac
2018-12-27lint: Check for unstable tarballs....* guix/scripts/lint.scm (check-source-unstable-tarball): New procedure. (%checkers): Add it. * tests/lint.scm ("source-unstable-tarball", "source-unstable-tarball: source #f", "source-unstable-tarball: valid", "source-unstable-tarball: package named archive", "source-unstable-tarball: not-github", "source-unstable-tarball: git-fetch"): New tests. * doc/guix.texi (Invoking guix lint): Document it. Efraim Flashner
2018-12-24guix: lint: Check for source URIs redirecting to GitHub....* guix/scripts/lint.scm (check-github-uri): New procedure. (%checkers): Add it. * doc/guix.texi (Invoking guix lint): Document it. * tests/lint.scm ("github-url", "github-url: one suggestion"): New tests. Arun Isaac
2018-11-20lint: 'check-derivation' tries all the package's supported systems....This allows us to catch architecture-specific evaluation failures. * guix/scripts/lint.scm (check-derivation): Move body into... [try]: ... this. New procedure. Call 'try' for each supported system of PACKAGE. Ludovic Courtès