diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-22 23:00:21 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-22 23:00:21 +0100 |
commit | a24b83d7fff51ebd75ce6e694cde8d8435ba2ccf (patch) | |
tree | 089be73af56ada72e58aad53f5f385fba55468a3 | |
parent | eceecd8ab40083701aeb6bb905841728a720699b (diff) |
gnu: uget: Add -fcommon to CFLAGS.
* gnu/packages/bittorrent.scm (uget)[arguments]: Add -fcommon to CFLAGS.
-rw-r--r-- | gnu/packages/bittorrent.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index f0f5128db4..197ad2ac55 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2017 Jelle Licht <jlicht@fsfe.org> ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com> ;;; Copyright © 2018 Nam Nguyen <namn@berkeley.edu> -;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2018, 2021 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2019, 2020 Brett Gilio <brettg@gnu.org> ;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li> @@ -363,6 +363,8 @@ Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces.") (sha256 (base32 "0dlrjhnm1pg2vwmp7nl2xv1aia5hyirb3021rl46x859k63zap24")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags '("CFLAGS=-fcommon"))) (inputs `(("curl" ,curl) ("gtk+" ,gtk+) |