gnu: guile: Depend on 'libltdl' rather than 'libtool'.
* gnu/packages/guile.scm (guile-1.8, guile-2.0): Replace LIBTOOL with LIBLTDL.
This commit is contained in:
parent
3cbb3f9c55
commit
be11b10244
1 changed files with 5 additions and 2 deletions
|
@ -87,7 +87,7 @@
|
||||||
;; Since `guile-1.8.pc' has "Libs: ... -lgmp -lltdl", these must be
|
;; Since `guile-1.8.pc' has "Libs: ... -lgmp -lltdl", these must be
|
||||||
;; propagated.
|
;; propagated.
|
||||||
(propagated-inputs `(("gmp" ,gmp)
|
(propagated-inputs `(("gmp" ,gmp)
|
||||||
("libtool" ,libtool)))
|
("libltdl" ,libltdl)))
|
||||||
|
|
||||||
;; When cross-compiling, a native version of Guile itself is needed.
|
;; When cross-compiling, a native version of Guile itself is needed.
|
||||||
(self-native-input? #t)
|
(self-native-input? #t)
|
||||||
|
@ -131,7 +131,10 @@ without requiring the source code to be rewritten.")
|
||||||
;; `-L' flags. As for why the `.la' file lacks the `-L' flags, see
|
;; `-L' flags. As for why the `.la' file lacks the `-L' flags, see
|
||||||
;; <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/18903>.
|
;; <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/18903>.
|
||||||
("libunistring" ,libunistring)
|
("libunistring" ,libunistring)
|
||||||
("libtool" ,libtool)
|
|
||||||
|
;; Depend on LIBLTDL, not LIBTOOL. That way, we avoid some the extra
|
||||||
|
;; dependencies that LIBTOOL has, which is helpful during bootstrap.
|
||||||
|
("libltdl" ,libltdl)
|
||||||
|
|
||||||
;; The headers and/or `guile-2.0.pc' refer to these packages, so they
|
;; The headers and/or `guile-2.0.pc' refer to these packages, so they
|
||||||
;; must be propagated.
|
;; must be propagated.
|
||||||
|
|
Reference in a new issue