Modified for the new library layout.
Showing
1 changed file
with
11 additions
and
1 deletions
... | @@ -20,8 +20,18 @@ changequote([,])dnl | ... | @@ -20,8 +20,18 @@ changequote([,])dnl |
20 | 20 | ||
21 | (define-module (mailutils)) | 21 | (define-module (mailutils)) |
22 | 22 | ||
23 | (define mu-libs (list "libmailbox" | ||
24 | "libmuauth" | ||
25 | "libmu_mbox" | ||
26 | "libmu_mh" | ||
27 | "libmu_pop" | ||
28 | "libmu_imap")) | ||
29 | |||
23 | (let ((lib-path "LIBDIR/")) | 30 | (let ((lib-path "LIBDIR/")) |
24 | (dynamic-link (string-append lib-path "libmailbox")) | 31 | (for-each |
32 | (lambda (lib) | ||
33 | (dynamic-link (string-append lib-path lib))) | ||
34 | mu-libs) | ||
25 | (cond | 35 | (cond |
26 | ((or (string=? (version) "1.4") | 36 | ((or (string=? (version) "1.4") |
27 | (string=? (version) "1.4.1")) | 37 | (string=? (version) "1.4.1")) | ... | ... |
-
Please register or sign in to post a comment