1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00

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@
This commit is contained in:
Eygene Ryabinkin 2012-07-16 19:45:27 +00:00
parent d2e15d8ab0
commit 7c4553e7f2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=300975

View File

@ -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)