mbakke pushed a commit to branch core-updates
in repository guix.
commit b42cb70e37caa507fb3ceec751f58e8d61a48759
Author: Marius Bakke <[email protected]>
AuthorDate: Sat Sep 10 19:36:50 2022 +0200
gnu: libXdmcp: Build without libbsd.
The libbsd input was added in fe6db6ecff9ab0b2d7a66b27491e4d1a15e6f982 to
fix
CVE-2017-2625. libXdmcp 1.1.3 implemented an alternative fix using the
glibc getentropy(3) function, alleviating the need to pull in libbsd.
* gnu/packages/xorg.scm (libxdmcp)[inputs]: Remove LIBBSD.
---
gnu/packages/xorg.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index f9b148db5f..85098b7744 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -1276,8 +1276,7 @@ with the Cygwin XWin server when running X11 in a
rootless mode.")
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--disable-static")))
- (inputs
- (list libbsd xorgproto))
+ (inputs (list xorgproto))
(native-inputs
(list pkg-config))
(home-page "https://www.x.org/wiki/")