Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Dec 2009 21:46:27 +0200
From:      Lena@lena.kiev.ua
To:        freebsd-questions@freebsd.org
Subject:   Mutt and openssl from port
Message-ID:  <20091212194627.GA20498@lena.kiev>

next in thread | raw e-mail | index | archive | help
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!



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20091212194627.GA20498>