diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-10 19:36:50 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-10 20:08:38 +0200 |
commit | b42cb70e37caa507fb3ceec751f58e8d61a48759 (patch) | |
tree | 19f2bb3d659fe78a8a6fb3d0d4718ca4d332f742 /gnu/packages/xorg.scm | |
parent | ae406b91e2aecf2a7c45c456d7e0f4dfd0aeb928 (diff) | |
download | guix-b42cb70e37caa507fb3ceec751f58e8d61a48759.tar.gz |
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.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 3 |
1 files changed, 1 insertions, 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/") |