diff options
author | rea <rea@FreeBSD.org> | 2012-07-17 03:45:27 +0800 |
---|---|---|
committer | rea <rea@FreeBSD.org> | 2012-07-17 03:45:27 +0800 |
commit | b2d078238fc177fbb5b882cd69551fa880e5d31e (patch) | |
tree | 43c404330ff0bbc77146f43f89126d7f3c3ee50d | |
parent | 5c4afab95af4f4b26006c4dd8c9916ccfecf120a (diff) | |
download | freebsd-ports-gnome-b2d078238fc177fbb5b882cd69551fa880e5d31e.tar.gz freebsd-ports-gnome-b2d078238fc177fbb5b882cd69551fa880e5d31e.tar.zst freebsd-ports-gnome-b2d078238fc177fbb5b882cd69551fa880e5d31e.zip |
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@
-rw-r--r-- | mail/exim/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index b4deae79b01a..0a5af4a71e4a 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -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) |