bug-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-mailutils] Guile module mailutils.scm tries to load libraries disab


From: Chris Hall
Subject: [bug-mailutils] Guile module mailutils.scm tries to load libraries disabled at build time.
Date: Mon, 4 Jun 2012 03:23:55 -1000

One of the features I really like about GNU Mailutils is that I can build with only the required features.

I like this because it makes things smaller, leaner and reults in a smaller potential "attack surface".

So I disabled POP, MH, Maildir when I built GNU Mailutils.

But the Guile module (mailutils mailutils) tries to load the dynamic libraries associated with the disabled features anyway, and this in turn makes (mailutils mailutils) fail to load properly, thus is not accessible.

I commented out the problem statements guile/site/2.0/mailutils/mailutils.scm, restarted Guile and (use-modules (mailutils mailutils)), now things seem to work better.

(define mu-libs (list (cons "libmailutils"     "libmailutils")
                      (cons "libmu_auth"       "libmu_auth")
                      (cons "libproto/mbox"    "libmu_mbox")
;;                    (cons "libproto/mh"      "libmu_mh")                                
;;                    (cons "libproto/maildir" "libmu_maildir")                           
;;                    (cons "libproto/pop"     "libmu_pop")                               
                      (cons "libproto/imap"    "libmu_imap")))

Just in case you weren't aware, please forgive if this is a known issue, but I didn't see it in the bug tracker.

Sincerely,

Chris


reply via email to

[Prev in Thread] Current Thread [Next in Thread]