Commit 2200cf30 2200cf305adc8e72cece7e582e4df5805901c25c by Sergey Poznyakoff

Modified for the new library layout.

1 parent 59174760
...@@ -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"))
......