me
/
guix
Archived
1
0
Fork 0

gnu: guile-xapian: Fix compilation with Guile 3.0.7.

* gnu/packages/guile-xyz.scm (guile-xapian)[source]: Add 'modules' and
'snippet'.
master
Ludovic Courtès 2021-09-28 23:57:33 +02:00
parent 106181c0a0
commit acbce4ea41
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 1 deletions

View File

@ -4028,7 +4028,14 @@ over, or update a value in arbitrary data structures.")
(file-name (git-file-name name version))
(sha256
(base32
"16k61f1jn3g48jaf3730b9l0izr5j933jzyri73nmcnjd09gm35i"))))
"16k61f1jn3g48jaf3730b9l0izr5j933jzyri73nmcnjd09gm35i"))
(modules '((guix build utils)))
(snippet
;; Guile >= 3.0.7 no longer uses libltdl so we need to explicitly add
;; ".libs" so that 'load-extension' finds the '.so' file.
'(substitute* "pre-inst-env.in"
(("^LD_LIBRARY_PATH=.*$")
"LD_LIBRARY_PATH=\"$abs_top_builddir/.libs\"\n")))))
(build-system gnu-build-system)
(arguments
'(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings