Mutt and openssl from port

Lena at lena.kiev.ua Lena at lena.kiev.ua
Sat Dec 12 20:05:45 UTC 2009


Hi,

7.1-PRERELEASE. I'd like Mutt to use zlib compression when connecting to pop3s.
openssl in base doesn't support zlib. I installed openssl port from package
(in the port zlib in on by default), wrote in make.conf:

WITH_OPENSSL_PORT=yes

and `portupgrade -f mutt`. However, Mutt still uses openssl from base:

~ $ ldd /usr/local/bin/mutt
/usr/local/bin/mutt:
        libncursesw.so.7 => /lib/libncursesw.so.7 (0x28103000)
        libssl.so.5 => /usr/lib/libssl.so.5 (0x2814f000)
        libcrypto.so.5 => /lib/libcrypto.so.5 (0x28190000)
        libintl.so.8 => /usr/local/lib/libintl.so.8 (0x282ea000)
        libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x282f3000)
        libc.so.7 => /lib/libc.so.7 (0x283ea000)

Then I patched /usr/ports/mail/mutt/Makefile :

 CONFIGURE_ARGS=        --enable-pop --enable-imap --disable-fcntl \
-               --with-ssl=${OPENSSLBASE} --sysconfdir=${PREFIX}/etc \
+               --with-ssl=/usr/local --sysconfdir=${PREFIX}/etc \

but got the same. I suppose that OPENSSL_OVERWRITE_BASE doesn't work:
http://lists.freebsd.org/pipermail/freebsd-questions/2004-November/065565.html
What can I do?

Thanks!


More information about the freebsd-questions mailing list