svn commit: r364126 - stable/12/share/examples/etc

Gregory Neil Shapiro gshapiro at FreeBSD.org
Tue Aug 11 17:51:31 UTC 2020


Author: gshapiro
Date: Tue Aug 11 17:51:31 2020
New Revision: 364126
URL: https://svnweb.freebsd.org/changeset/base/364126

Log:
  MFC: Mirror recommendation from Handbook to avoid linking conflicts when
       pulling in SASL libraries.  (r363750)

Modified:
  stable/12/share/examples/etc/make.conf
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/share/examples/etc/make.conf
==============================================================================
--- stable/12/share/examples/etc/make.conf	Tue Aug 11 16:47:00 2020	(r364125)
+++ stable/12/share/examples/etc/make.conf	Tue Aug 11 17:51:31 2020	(r364126)
@@ -238,13 +238,11 @@
 #
 #    with SASLv1:
 #	SENDMAIL_CFLAGS=-I/usr/local/include/sasl1 -DSASL
-#	SENDMAIL_LDFLAGS=-L/usr/local/lib
-#	SENDMAIL_LDADD=-lsasl
+#	SENDMAIL_LDADD=/usr/local/lib/libsasl.so
 #
 #    with SASLv2:
 #	SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2
-#	SENDMAIL_LDFLAGS=-L/usr/local/lib
-#	SENDMAIL_LDADD=-lsasl2
+#	SENDMAIL_LDADD=/usr/local/lib/libsasl2.so
 #
 # Note: If you are using Cyrus SASL with other applications which require
 #	access to the sasldb file, you should add the following to your


More information about the svn-src-stable-12 mailing list