gnu: lsof: Fix builds on glibc 2.28.
* gnu/packages/lsof.scm (lsof)[arguments]: In 'disable-failing-tests', add 'substitute*' use for "tests/LTlib.c".
This commit is contained in:
parent
c2397a8695
commit
f1a9c6e581
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -77,6 +78,12 @@
|
||||||
#t))
|
#t))
|
||||||
(add-before 'check 'disable-failing-tests
|
(add-before 'check 'disable-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
|
;; In libc 2.28, the 'major' and 'minor' macros are provided by
|
||||||
|
;; <sys/sysmacros.h> only so include it.
|
||||||
|
(substitute* "tests/LTlib.c"
|
||||||
|
(("#ifndef lint")
|
||||||
|
"#include <sys/sysmacros.h>\n\n#ifndef lint"))
|
||||||
|
|
||||||
(substitute* "tests/Makefile"
|
(substitute* "tests/Makefile"
|
||||||
;; Fails with ‘ERROR!!! client gethostbyaddr() failure’.
|
;; Fails with ‘ERROR!!! client gethostbyaddr() failure’.
|
||||||
(("(STDTST=.*) LTsock" _ prefix) prefix)
|
(("(STDTST=.*) LTsock" _ prefix) prefix)
|
||||||
|
|
Loading…
Reference in New Issue