gnu: libtool: Update to 2.4.5.
* gnu/packages/autotools.scm (libtool): Update to 2.4.5. (libltdl): Adjust 'version' and 'source' to remain at 2.4.4.
This commit is contained in:
parent
ca8343b5ac
commit
a101c891e1
|
@ -238,14 +238,14 @@ Makefile, simplifying the entire process for the developer.")
|
||||||
(define-public libtool
|
(define-public libtool
|
||||||
(package
|
(package
|
||||||
(name "libtool")
|
(name "libtool")
|
||||||
(version "2.4.4")
|
(version "2.4.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/libtool/libtool-"
|
(uri (string-append "mirror://gnu/libtool/libtool-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0v3zq08qxv7k5067mpqrkjkjl3wphhg06i696mka90mzadc5nad8"))
|
"0zhphv4n9bdd6sz66lqfrfqcsnv89mg2bykgi5w9401va4vc3al4"))
|
||||||
(patches
|
(patches
|
||||||
(list (search-patch "libtool-skip-tests.patch")))))
|
(list (search-patch "libtool-skip-tests.patch")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
@ -295,8 +295,16 @@ complexity of working with shared libraries across platforms.")
|
||||||
;; Libtool's extensive test suite isn't run.
|
;; Libtool's extensive test suite isn't run.
|
||||||
(package
|
(package
|
||||||
(name "libltdl")
|
(name "libltdl")
|
||||||
(version (package-version libtool))
|
(version "2.4.4")
|
||||||
(source (package-source libtool))
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnu/libtool/libtool-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0v3zq08qxv7k5067mpqrkjkjl3wphhg06i696mka90mzadc5nad8"))
|
||||||
|
(patches
|
||||||
|
(list (search-patch "libtool-skip-tests.patch")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--enable-ltdl-install") ;really install it
|
'(#:configure-flags '("--enable-ltdl-install") ;really install it
|
||||||
|
|
Loading…
Reference in New Issue