mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
gnu: pjproject-jami: Build without debugging assertions.
This fixes a bug where Jami crashes while disconnecting from an audio call. * gnu/packages/jami.scm (pjproject-jami)[arguments]: Use -DNDEBUG flag. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
1c15d30521
commit
c54b9afb87
1 changed files with 4 additions and 2 deletions
|
@ -142,8 +142,10 @@ (define-public pjproject-jami
|
|||
;; against pjproject-jami:
|
||||
;; relocation R_X86_64_32S against `.rodata' can not be used when
|
||||
;; making a shared object;
|
||||
"CFLAGS=-fPIC"
|
||||
"CXXFLAGS=-fPIC")
|
||||
;; -DNDEBUG is needed to prevent assertion from happening and
|
||||
;; stopping the daemon.
|
||||
"CFLAGS=-fPIC -DNDEBUG"
|
||||
"CXXFLAGS=-fPIC -DNDEBUG")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'make-git-checkout-writable
|
||||
|
|
Loading…
Reference in a new issue