gnu: cvs: Use external zlib.
authorEfraim Flashner <efraim@flashner.co.il>
Sat, 21 Nov 2015 19:43:11 +0000 (21:43 +0200)
committerEfraim Flashner <efraim@flashner.co.il>
Sat, 21 Nov 2015 19:43:11 +0000 (21:43 +0200)
* gnu/packages/version-control.scm (cvs)[arguments]: add configure flag
  --with-exernal-zlib.

gnu/packages/version-control.scm

index 77486cd..70c4442 100644 (file)
@@ -6,6 +6,7 @@
 ;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
+;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -672,7 +673,8 @@ machine.")
     (build-system gnu-build-system)
     (arguments
      ;; XXX: The test suite looks flawed, and the package is obsolete anyway.
-     '(#:tests? #f))
+     '(#:tests? #f
+       #:configure-flags (list "--with-external-zlib")))
     (inputs `(("zlib" ,zlib)
               ("nano" ,nano)))                    ; the default editor
     (home-page "http://cvs.nongnu.org")