diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-09-02 15:57:56 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-09-02 15:57:56 +0200 |
commit | 30dfac27a5642c36e7bb1ba7966566864ba2d28d (patch) | |
tree | 3b59623014eeea1df02cda5f926d803b9a36a828 /gnu/packages/xorg.scm | |
parent | d2ee294c0400ac8f2a10f10c3c9644da513a3712 (diff) | |
parent | 65e4109cdc96fbaee088f50d0138af8acef43141 (diff) | |
download | patches-30dfac27a5642c36e7bb1ba7966566864ba2d28d.tar patches-30dfac27a5642c36e7bb1ba7966566864ba2d28d.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 2ae87a60b7..b72153894a 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -41,6 +41,7 @@ #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages bison) + #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages flex) #:use-module (gnu packages fontutils) @@ -1979,11 +1980,8 @@ server.") ("libxau" ,libxau) ("libx11" ,libx11))) (native-inputs - `(("pkg-config" ,pkg-config))) - - ;; FIXME: The test suite needs http://liw.fi/cmdtest/ - (arguments `(#:tests? #f)) - + `(("cmdtest" ,cmdtest) + ("pkg-config" ,pkg-config))) (home-page "https://www.x.org/wiki/") (synopsis "X authority file utility") (description @@ -2749,7 +2747,8 @@ framebuffer device.") `(("libdrm" ,libdrm) ("mesa" ,mesa) ("udev" ,eudev) - ("xorg-server" ,xorg-server))) + ("xorg-server" ,xorg-server) + ("zlib" ,zlib))) (native-inputs `(("pkg-config" ,pkg-config) ("autoconf" ,autoconf) @@ -5766,6 +5765,12 @@ programs that cannot use the window system directly.") #:parallel-build? #f #:phases (modify-phases %standard-phases + (add-before 'configure 'set-perl-search-path + (lambda _ + (setenv "PERL5LIB" + (string-append (getcwd) ":" + (getenv "PERL5LIB"))) + #t)) (add-before 'build 'patch-Makefile (lambda* (#:key inputs #:allow-other-keys) (substitute* "Makefile" |