Summary: | ports/mail/exim /usr/bin/ld: cannot find -lhcrypto | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Richard E. Depew <red> |
Component: | Individual Port(s) | Assignee: | Eygene Ryabinkin <rea> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Richard E. Depew
2012-07-13 18:20:07 UTC
Class Changed From-To: maintainer-update->change-request Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) Responsible Changed From-To: freebsd-ports-bugs->rea Over to maintainer (via the GNATS Auto Assign Tool) Please, try the patch at http://codelabs.ru/fbsd/ports/exim/4.80-fix-SASL-build.diff it should fix the SASL problem. This sequence should be enough: {{{ cd /usr/ports/mail/exim fetch -qo - http://codelabs.ru/fbsd/ports/exim/4.80-fix-SASL-build.diff | patch rm -rf work make && make deinstall install clean }}} -- Eygene Ryabinkin ,,,^..^,,, [ Life's unfair - but root password helps! | codelabs.ru ] [ 82FE 06BC D497 C0DE 49EC 4FF0 16AF 9EAE 8152 ECFB | freebsd.org ] Thanks, Eygene, your instructions worked beautifully! cd /usr/ports/mail/exim fetch -qo - http://codelabs.ru/fbsd/ports/exim/4.80-fix-SASL-build.diff | patch rm -rf work make && make deinstall install clean herring.ald.net is now running exim-4.80 thanks to you. Thanks again! Best wishes, Dick for ald.net Services, ltd. Author: rea Date: Mon Jul 16 19:45:27 2012 New Revision: 300975 URL: http://svn.freebsd.org/changeset/ports/300975 Log: mail/exim: fix build with SASL Uncomment only relevant configuration line for SASL libraries (we're currently using SASL 2.x, so it is -lsasl2). PR: 169833 Found by: Richard E. Depew Pointyhat to: rea@ Modified: head/mail/exim/Makefile Modified: head/mail/exim/Makefile ============================================================================== --- head/mail/exim/Makefile Mon Jul 16 19:44:20 2012 (r300974) +++ head/mail/exim/Makefile Mon Jul 16 19:45:27 2012 (r300975) @@ -336,7 +336,7 @@ SEDLIST+= -e 's,^\# (AUTH_SPA=),\1,' .if defined(WITH_AUTH_SASL) LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2 SEDLIST+= -e 's,^\# (AUTH_CYRUS_SASL=),\1,' \ - -e 's,^\# (AUTH_LIBS=),\1,' + -e 's,^\# (AUTH_LIBS=.*-lsasl2),\1,' .endif .if defined(WITH_AUTH_RADIUS) _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed SASL build fixed, thanks for reporting and testing! |