gnu: pcre: Update to 8.36 and enable JIT support.
* gnu/packages/pcre.scm (pcre): Update to 8.36. Enable JIT support.
This commit is contained in:
parent
8a3c54e0a1
commit
90dcf9c8c5
@ -1,5 +1,6 @@
|
|||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
@ -27,14 +28,14 @@
|
|||||||
(define-public pcre
|
(define-public pcre
|
||||||
(package
|
(package
|
||||||
(name "pcre")
|
(name "pcre")
|
||||||
(version "8.32")
|
(version "8.36")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/pcre/pcre/"
|
(uri (string-append "mirror://sourceforge/pcre/pcre/"
|
||||||
version "/pcre-" version ".tar.bz2"))
|
version "/pcre-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0m8gvrf1q0iwll4csirvvj98xygw4cy7r14i5l53ivsqs2dzn4x9"))))
|
"1fs5p1z67m9f4xnyil3s4lhgyld78f7m4d1yawpyhh0cvrbk90zg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("bzip2" ,bzip2)
|
(inputs `(("bzip2" ,bzip2)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
@ -43,7 +44,8 @@
|
|||||||
`(#:configure-flags '("--enable-utf"
|
`(#:configure-flags '("--enable-utf"
|
||||||
"--enable-pcregrep-libz"
|
"--enable-pcregrep-libz"
|
||||||
"--enable-pcregrep-libbz2"
|
"--enable-pcregrep-libbz2"
|
||||||
"--enable-pcretest-libreadline")))
|
"--enable-pcretest-libreadline"
|
||||||
|
"--enable-jit")))
|
||||||
(synopsis "Perl Compatible Regular Expressions")
|
(synopsis "Perl Compatible Regular Expressions")
|
||||||
(description
|
(description
|
||||||
"The PCRE library is a set of functions that implement regular expression
|
"The PCRE library is a set of functions that implement regular expression
|
||||||
|
Loading…
Reference in New Issue
Block a user