mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: libappindicator: Fix build for GCC 10.
* gnu/packages/freedesktop.scm (libappindicator)[source]: Add snippet to prevent declaring _PyGObject_API twice. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
2302adc0ec
commit
cdb63b192c
1 changed files with 8 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
|
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
|
||||||
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
|
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
|
||||||
;;; Copyright © 2021 pineapples <guixuser6392@protonmail.com>
|
;;; Copyright © 2021 pineapples <guixuser6392@protonmail.com>
|
||||||
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2210,6 +2211,13 @@ (define-public libappindicator
|
||||||
"https://launchpad.net/libappindicator/"
|
"https://launchpad.net/libappindicator/"
|
||||||
(version-major+minor version) "/" version
|
(version-major+minor version) "/" version
|
||||||
"/+download/libappindicator-" version ".tar.gz"))
|
"/+download/libappindicator-" version ".tar.gz"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; Fix 'multiple definitions' error from GCC 10
|
||||||
|
(substitute* "bindings/python/appindicatormodule.c"
|
||||||
|
(("^#include <pygobject.h>" all)
|
||||||
|
(string-append "#define NO_IMPORT_PYGOBJECT\n" all)))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17xlqd60v0zllrxp8bgq3k5a1jkj0svkqn8rzllcyjh8k0gpr46m"))))
|
"17xlqd60v0zllrxp8bgq3k5a1jkj0svkqn8rzllcyjh8k0gpr46m"))))
|
||||||
|
|
Loading…
Reference in a new issue