make.conf revision 80452
1232950Stheraven# $FreeBSD: head/share/examples/etc/make.conf 80452 2001-07-27 16:23:53Z peter $
2232950Stheraven#
3232950Stheraven# NOTE:  Please would any committer updating this file also update the
4232950Stheraven# make.conf(5) manual page, if necessary, which is located in
5232950Stheraven# src/share/man/man5/make.conf.5.
6232950Stheraven#
7232950Stheraven# This file, if present, will be read by make (see /usr/share/mk/sys.mk).
8232950Stheraven# It allows you to override macro definitions to make without changing
9232950Stheraven# your source tree, or anything the source tree installs.
10232950Stheraven#
11232950Stheraven# This file must be in valid Makefile syntax.
12232950Stheraven#
13232950Stheraven# You have to find the things you can put here in the Makefiles and 
14232950Stheraven# documentation of the source tree.
15232950Stheraven#
16232950Stheraven#
17232950Stheraven# The CPUTYPE variable controls which processor should be targetted for
18232950Stheraven# generated code.  This controls processor-specific optimizations in
19232950Stheraven# certain code (currently only OpenSSL) as well as modifying the value
20232950Stheraven# of CFLAGS to contain the appropriate optimization directive to gcc.
21232950Stheraven# The automatic setting of CFLAGS may be overridden using the
22232950Stheraven# NO_CPU_CFLAGS variable below.
23232950Stheraven# Currently the following CPU types are recognised:
24232950Stheraven#   Intel x86 architecture:
25232950Stheraven#       (AMD CPUs)	k7 k6-2 k6 k5
26232950Stheraven#       (Intel CPUs)	p4 p3 p2 i686 i586/mmx i586 i486 i386
27227825Stheraven#   Alpha/AXP architecture: ev6 pca56 ev56 ev5 ev45 ev4
28227825Stheraven#   Intel ia64 architecture: itanium
29227825Stheraven#
30227825Stheraven#CPUTYPE=i686
31227972Stheraven#NO_CPU_CFLAGS=	true	# Don't add -march=<cpu> to CFLAGS automatically
32227825Stheraven#NO_CPU_COPTFLAGS=true	# Don't add -march=<cpu> to COPTFLAGS automatically
33227825Stheraven#
34227825Stheraven# CFLAGS controls the compiler settings used when compiling C code.
35227825Stheraven# Note that optimization settings above -O (-O2, ...) are not recommended
36227825Stheraven# or supported for compiling the world or the kernel - please revert any
37228004Stheraven# nonstandard optimization settings to "-O" before submitting bug reports
38228004Stheraven# to the developers.
39228004Stheraven# Note also that at this time the -O2 setting is known to produce BROKEN
40228004Stheraven# CODE on the Alpha platform.
41228004Stheraven#
42227825Stheraven#CFLAGS= -O -pipe
43227825Stheraven#
44227972Stheraven# CXXFLAGS controls the compiler settings used when compiling C++ code.
45227972Stheraven# Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
46227972Stheraven# to add to CXXFLAGS value, "+=" must be used rather than "=".  Using "="
47227972Stheraven# alone will remove the often needed contents of CFLAGS from CXXFLAGS.
48227972Stheraven#
49227972Stheraven#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
50227972Stheraven#
51227972Stheraven# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
52227972Stheraven# for use in developing FreeBSD and testing changes.  They can be used by
53227972Stheraven# putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf.  -Wconversion is not
54227972Stheraven# included here due to compiler bugs, eg: mkdir()'s mode_t argument.
55227972Stheraven#
56227972StheravenBDECFLAGS=	-W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
57227972Stheraven		-Wcast-qual -Wchar-subscripts -Winline \
58227972Stheraven		-Wmissing-prototypes -Wnested-externs -Wpointer-arith \
59227972Stheraven		-Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings
60227972Stheraven#
61227972Stheraven# To compile just the kernel with special optimizations, you should use
62227972Stheraven# this instead of CFLAGS (which is not applicable to kernel builds anyway).
63227972Stheraven# There is very little to gain by using higher optimization levels, and doing
64227972Stheraven# so can cause problems.
65227972Stheraven#
66227972Stheraven#COPTFLAGS= -O -pipe
67227972Stheraven#
68227972Stheraven# Compare before install
69227972Stheraven#INSTALL=install -C
70227972Stheraven#
71227972Stheraven# Mtree will follow symlinks
72227972Stheraven#MTREE_FOLLOWS_SYMLINKS= -L
73227972Stheraven#
74227972Stheraven# To enable installing suidperl with the setuid bit turned on
75227972Stheraven#ENABLE_SUIDPERL=	true
76227972Stheraven#
77227972Stheraven# To build ppp with normal permissions
78227972Stheraven#PPP_NOSUID=	true
79227972Stheraven#
80227972Stheraven# To enable installing ssh(1) with the setuid bit turned on
81227972Stheraven#ENABLE_SUID_SSH=	true
82227972Stheraven#
83227972Stheraven# To avoid building various parts of the base system:
84227972Stheraven#NO_CVS=	true	# do not build CVS
85227972Stheraven#NO_BIND=	true	# do not build BIND
86227972Stheraven#NO_FORTRAN=	true	# do not build g77 and related libraries
87227972Stheraven#NO_I4B=	true	# do not build isdn4bsd package
88227972Stheraven#NO_LPR=	true	# do not build lpr and related programs
89227972Stheraven#NO_MAILWRAPPER=true	# do not build the mailwrapper(8) MTA selector
90227972Stheraven#NO_MODULES=	true	# do not build modules with the kernel
91227972Stheraven#NO_OBJC=	true	# do not build Objective C support
92227972Stheraven#NO_OPENSSH=	true	# do not build OpenSSH
93227972Stheraven#NO_OPENSSL=	true	# do not build OpenSSL (implies NO_OPENSSH)
94227972Stheraven#NO_SENDMAIL=	true	# do not build sendmail and related programs
95227972Stheraven#NO_SHAREDOCS=	true	# do not build the 4.4BSD legacy docs
96227972Stheraven#NO_TCSH=	true	# do not build and install /bin/csh (which is tcsh)
97227972Stheraven#NO_X=		true	# do not compile in XWindows support (e.g. doscmd)
98227972Stheraven#NOCRYPT=	true	# do not build any crypto code
99227972Stheraven#NOGAMES=	true	# do not build games (games/ subdir)
100227972Stheraven#NOINFO=	true	# do not make or install info files
101227972Stheraven#NOLIBC_R=	true	# do not build libc_r (re-entrant version of libc)
102227972Stheraven#NOPERL=	true	# do not build perl. Disables OpenSSL optimizations
103227972Stheraven#NOPROFILE=	true	# Avoid compiling profiled libraries
104227825Stheraven#NOSECURE=	true	# do not build crypto code in secure/ subdir
105227825Stheraven#NOSHARE=	true	# do not go into the share subdir
106227825Stheraven#NOUUCP=	true	# do not build uucp related programs
107227825Stheraven#
108227825Stheraven# To build the OpenSSL manpages, uncomment the following.  These are not
109227825Stheraven# built by default because they clobber a number of system manpages with
110227825Stheraven# manpages describing parts of the OpenSSL toolkit, including passwd(1),
111227825Stheraven# err(3), md5(3), and others.
112227825Stheraven#
113227825Stheraven#WANT_OPENSSL_MANPAGES=	true
114227825Stheraven#
115227825Stheraven# To build usr.bin/opie* and libopie with options to make it accept
116227825Stheraven# being operatred over insecure TTY's. Mainly of use during debugging,
117227825Stheraven# This is also of use if all traffic is routinely encrypted.
118227825Stheraven#
119227825Stheraven#WANT_INSECURE_OPIE=	true
120227825Stheraven#
121227825Stheraven# To build sys/modules when building the world (our old way of doing things)
122227825Stheraven#MODULES_WITH_WORLD=true	# do not build modules when building kernel
123227825Stheraven#
124227825Stheraven#
125227825Stheraven# The following controls building optional IDEA code in libcrypto and
126227825Stheraven# certain ports.  Patents are involved - you must not use this unless
127227825Stheraven# you either have a license or fall within patent 'fair use'
128227825Stheraven# provisions.
129227825Stheraven#
130227825Stheraven# *** It is YOUR RESPONSIBILITY to determine if you can use this! ***
131227825Stheraven#
132227825Stheraven# IDEA is patented in the USA and many european countries - thought to
133227825Stheraven# be OK to use for any non-commercial use.  This is optional.
134227825Stheraven#MAKE_IDEA=	YES	# IDEA (128 bit symmetric encryption)
135227825Stheraven#
136227825Stheraven# To avoid running MAKEDEV all on /dev during install set NO_MAKEDEV_RUN.
137227825Stheraven# If you don't want to install MAKEDEV set NO_MAKEDEV_INSTALL, this implies
138227825Stheraven# NO_MAKEDEV_RUN.
139227825Stheraven#NO_MAKEDEV_INSTALL=	true
140227825Stheraven#NO_MAKEDEV_RUN=	true
141227825Stheraven#
142227825Stheraven# If you do not want unformatted manual pages to be compressed
143227825Stheraven# when they are installed:
144227825Stheraven#
145227825Stheraven#NOMANCOMPRESS=	true
146227825Stheraven#
147227825Stheraven#
148227825Stheraven# If you want the "compat" shared libraries installed as part of your normal
149227825Stheraven# builds, uncomment these:
150227825Stheraven#
151227825Stheraven#COMPAT1X=	yes
152227825Stheraven#COMPAT20=	yes
153227825Stheraven#COMPAT21=	yes
154227972Stheraven#COMPAT22=	yes
155227972Stheraven#COMPAT3X=	yes
156227972Stheraven#COMPAT4X=	yes
157227972Stheraven#
158227825Stheraven#
159227825Stheraven# If you do not want additional documentation (some of which are
160227825Stheraven# a few hundred KB's) for ports to be installed:
161227825Stheraven#
162227825Stheraven#NOPORTDOCS=	true
163227825Stheraven#
164227825Stheraven#
165227825Stheraven# Default format for system documentation, depends on your printer.
166227825Stheraven# Set this to "ascii" for simple printers or screen
167227825Stheraven#
168227825Stheraven#PRINTERDEVICE=	ps
169227825Stheraven#
170227825Stheraven#
171227825Stheraven# How long to wait for a console keypress before booting the default kernel.
172227825Stheraven# This value is approximately in milliseconds. Keypresses are accepted by the
173227825Stheraven# BIOS before booting from disk, making it possible to give custom boot
174227825Stheraven# parameters even when this is set to 0.
175227825Stheraven#
176227825Stheraven#BOOTWAIT=0
177227972Stheraven#BOOTWAIT=30000
178227972Stheraven#
179227972Stheraven# By default, the system will always use the keyboard/video card as system
180227972Stheraven# console.  However, the boot blocks may be dynamically configured to use a
181227825Stheraven# serial port in addition to or instead of the keyboard/video console.
182227825Stheraven#
183227825Stheraven# By default we use COM1 as our serial console port *if* we're going to use
184227825Stheraven# a serial port as our console at all.  Alter as necessary.
185227825Stheraven#
186227825Stheraven#   COM1: = 0x3F8, COM2: = 0x2F8, COM3: = 0x3E8, COM4: = 0x2E8
187227825Stheraven#
188227825Stheraven#BOOT_COMCONSOLE_PORT=	0x3F8
189227825Stheraven#
190227825Stheraven# The default serial console speed is 9600.  Set the speed to a larger value
191227825Stheraven# for better interactive response.
192227825Stheraven#
193227825Stheraven#BOOT_COMCONSOLE_SPEED=	115200
194227825Stheraven#
195227825Stheraven# By default the 'pxeboot' loader retrieves the kernel via NFS.  Defining
196227825Stheraven# this and recompiling /usr/src/sys/boot will cause it to retrieve the kernel
197227825Stheraven# via TFTP.  This allows pxeboot to load a custom BOOTP diskless kernel yet
198227825Stheraven# still mount the server's '/' (i.e. rather then load the server's kernel).
199227825Stheraven#
200227825Stheraven#LOADER_TFTP_SUPPORT= YES
201227825Stheraven#
202227825Stheraven# By default, the ports collection attempts to use XFree86 3.3.X.  If
203227825Stheraven# you are running XFree86 4.X, uncomment this line.
204227825Stheraven#
205227825Stheraven#XFREE86_VERSION=	4
206227825Stheraven#
207227825Stheraven# By default, this points to /usr/X11R6 for XFree86 releases 3.0 or earlier.
208227825Stheraven# If you have a XFree86 from before 3.0 that has the X distribution in
209227825Stheraven# /usr/X386, you want to uncomment this.
210227825Stheraven#
211227825Stheraven#X11BASE=	/usr/X386
212227825Stheraven#
213227825Stheraven#
214227825Stheraven# If you have Motif on your system, uncomment this.
215227825Stheraven#
216227825Stheraven#HAVE_MOTIF=	yes
217227825Stheraven#MOTIF_STATIC=  yes
218227825Stheraven#
219227825Stheraven# If the default location of the Motif library (specified below) is NOT
220227825Stheraven# appropriate for you, uncomment this and change it to the correct value.
221227825Stheraven# If your motif is in ${X11BASE}/lib, you don't need to touch this line.
222227825Stheraven#
223227825Stheraven#MOTIFLIB=	-L${X11BASE}/lib -lXm
224227825Stheraven#
225227825Stheraven#
226227825Stheraven# If you're resident in the USA, this will help various ports to determine
227227825Stheraven# whether or not they should attempt to comply with the various U.S.
228227825Stheraven# export regulations on certain types of software which do not apply to
229227825Stheraven# anyone else in the world.
230227825Stheraven#
231227825Stheraven#USA_RESIDENT=		YES
232227825Stheraven#
233227825Stheraven#
234227825Stheraven# Override "don't install a port that's already installed" behavior.
235227825Stheraven# One might wish to do this for ports debugging or to unconditionally
236227825Stheraven# reinstall a set of suspect/broken ports.
237227825Stheraven#
238227825Stheraven#FORCE_PKG_REGISTER=    YES
239227825Stheraven#
240227825Stheraven#
241227825Stheraven# If you're behind a firewall and need FTP or HTTP proxy services for
242227825Stheraven# ports collection fetching to work, the following examples give the
243227825Stheraven# necessary syntax.  See the fetch(3) man page for details.
244227825Stheraven#
245227825Stheraven#FTP_PROXY=      10.0.0.1:21
246227825Stheraven#HTTP_PROXY=     10.0.0.1:80
247227825Stheraven#
248227825Stheraven#
249227825Stheraven# Port master sites.
250227825Stheraven#
251227825Stheraven# If you want your port fetches to go somewhere else than the default
252227825Stheraven# (specified below) in case the distfile/patchfile was not found,
253227825Stheraven# uncomment this and change it to a location nearest you.  (Don't
254227825Stheraven# remove the "/${DIST_SUBDIR}/" part.)
255227825Stheraven#
256227825Stheraven#MASTER_SITE_BACKUP?=	\
257227825Stheraven#	ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
258227825Stheraven#
259227825Stheraven# If you want your port fetches to check the above site first (before
260227825Stheraven# the MASTER_SITES specified in the port Makefiles), uncomment the
261227825Stheraven# line below.  You can also change the right side to point to wherever 
262227825Stheraven# you want.
263227825Stheraven#
264227825Stheraven#MASTER_SITE_OVERRIDE?=	${MASTER_SITE_BACKUP}
265227825Stheraven#
266227825Stheraven# Some ports use a special variable to point to a collection of
267227825Stheraven# mirrors of well-known software archives.  If you have a mirror close
268227825Stheraven# to you, uncomment any of the following lines and change it to that
269227825Stheraven# address.  (Don't remove the "/%SUBDIR%/" part.)
270227825Stheraven#
271227825Stheraven# Note: the right hand sides of the following lines are only for your
272227825Stheraven# information.  For a full list of default sites, take a look at
273227825Stheraven# bsd.sites.mk.
274227825Stheraven#
275227825Stheraven#MASTER_SITE_AFTERSTEP=	ftp://ftp.afterstep.org/%SUBDIR%/
276227825Stheraven#MASTER_SITE_COMP_SOURCES=	ftp://gatekeeper.dec.com/pub/usenet/comp.sources.%SUBDIR%/
277227825Stheraven#MASTER_SITE_GNOME=	ftp://ftp.gnome.org/pub/GNOME/sources/%SUBDIR%/
278227825Stheraven#MASTER_SITE_GNU=	ftp://ftp.gnu.org/gnu/%SUBDIR%/
279227825Stheraven#MASTER_SITE_KDE=	ftp://ftp.kde.org/pub/kde/%SUBDIR%/
280227825Stheraven#MASTER_SITE_LOCAL=	ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/%SUBDIR%/
281227825Stheraven#MASTER_SITE_MOZILLA=	ftp://ftp.mozilla.org/pub/%SUBDIR%/
282227825Stheraven#MASTER_SITE_NETBSD=	ftp://ftp.netbsd.org/pub/NetBSD/packages/distfiles/%SUBDIR%/
283227825Stheraven#MASTER_SITE_PERL_CPAN=	ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-module/%SUBDIR%/
284227825Stheraven#MASTER_SITE_PORTS_JP=	ftp://ports.jp.FreeBSD.org/pub/FreeBSD-jp/ports-jp/LOCAL_PORTS/%SUBDIR%/
285227825Stheraven#MASTER_SITE_RINGSERVER=	ftp://ftp.dnsbalance.ring.gr.jp/pub/%SUBDIR%/
286227825Stheraven#MASTER_SITE_RUBY=	ftp://ftp.netlab.co.jp/pub/lang/ruby/%SUBDIR%/
287227825Stheraven#MASTER_SITE_SOURCEFORGE=	ftp://ftp2.sourceforge.net/pub/sourceforge/%SUBDIR%/
288227825Stheraven#MASTER_SITE_SOURCEWARE=	ftp://ftp.freesoftware.com/pub/sourceware/%SUBDIR%/
289227825Stheraven#MASTER_SITE_SUNSITE=	ftp://metalab.unc.edu/pub/Linux/%SUBDIR%/
290227825Stheraven#MASTER_SITE_TCLTK=	ftp://ftp.scriptics.com/pub/tcl/%SUBDIR%/
291227825Stheraven#MASTER_SITE_TEX_CTAN=	ftp://ftp.tex.ac.uk/tex-archive/%SUBDIR%/
292227825Stheraven#MASTER_SITE_THEMES=	ftp://ftp.themes.org/pub/themes/%SUBDIR%/
293227825Stheraven#MASTER_SITE_WINDOWMAKER=	ftp://ftp.windowmaker.org/pub/%SUBDIR%/
294227825Stheraven#MASTER_SITE_XCONTRIB=	ftp://ftp.x.org/contrib/%SUBDIR%/
295227825Stheraven#MASTER_SITE_XEMACS=	ftp://ftp.xemacs.org/pub/xemacs/%SUBDIR%/
296227825Stheraven#MASTER_SITE_XFREE=	ftp://ftp.xfree86.org/pub/XFree86/%SUBDIR%/source/
297227825Stheraven#
298227825Stheraven# Also it is highly recommended that you configure MASTER_SORT_REGEX
299227825Stheraven# to choose better mirror sites for you.  List awk(1)-style regular
300227825Stheraven# expressions separated by space so MASTER_SITES will be sorted in
301227825Stheraven# that order.  The following example is for Japanese users; change
302227825Stheraven# "jp" part to your ccTLD ("de", "ru", "uk", etc.) or the domain names
303227825Stheraven# of your nearest/upstream networks to meet your needs.
304227825Stheraven#
305227825Stheraven#MASTER_SORT_REGEX?=	^file: ^ftp://ftp\.FreeBSD\.org/pub/FreeBSD/ports/local-distfiles/ ://[^/]*\.jp/ ://[^/]*\.jp\.
306227825Stheraven#
307227825Stheraven# Ports can place their working directories somewhere other than under 
308227825Stheraven# /usr/ports.  
309227825Stheraven#WRKDIRPREFIX=	/var/tmp
310227825Stheraven#
311227825Stheraven# Kerberos IV
312227825Stheraven# If you want KerberosIV (KTH eBones), define this:
313227825Stheraven#
314227825Stheraven#MAKE_KERBEROS4=	yes
315227825Stheraven#
316227825Stheraven#
317227825Stheraven# Kerberos 5
318227825Stheraven# If you want Kerberos 5 (KTH Heimdal), define this:
319227825Stheraven#
320227825Stheraven#MAKE_KERBEROS5=	yes
321227825Stheraven#
322227825Stheraven#
323228004Stheraven# Kerberos5
324228004Stheraven# If you want to install MIT Kerberos5 port somewhere other than /usr/local,
325228004Stheraven# define this (this is also used to tell ssh1 that kerberos is needed):
326228004Stheraven#
327228004Stheraven#KRB5_HOME=		/usr/local
328228004Stheraven#
329228004Stheraven#
330228004Stheraven# CVSup update flags.  Edit SUPFILE settings to reflect whichever distribution
331228004Stheraven# file(s) you use on your site (see /usr/share/examples/cvsup/README for more
332228004Stheraven# information on CVSup and these files).  To use, do "make update" in /usr/src.
333227825Stheraven#
334227825Stheraven#SUP_UPDATE=     yes
335227825Stheraven#
336227825Stheraven#SUP=            /usr/local/bin/cvsup
337228004Stheraven#SUPFLAGS=       -g -L 2
338228004Stheraven#SUPHOST=        cvsup.uk.FreeBSD.org
339228004Stheraven#SUPFILE=        /usr/share/examples/cvsup/standard-supfile
340228004Stheraven#PORTSSUPFILE=   /usr/share/examples/cvsup/ports-supfile
341228004Stheraven#DOCSUPFILE=     /usr/share/examples/cvsup/doc-supfile
342228004Stheraven#
343228004Stheraven# top(1) uses a hash table for the user names.  The size of this hash
344227825Stheraven# can be tuned to match the number of local users.  The table size should
345228004Stheraven# be a prime number approximately twice as large as the number of lines in
346228004Stheraven# /etc/passwd.  The default number is 20011.
347228004Stheraven#
348227825Stheraven#TOP_TABLE_SIZE= 101
349227825Stheraven#
350227825Stheraven# Documentation
351227825Stheraven#
352227825Stheraven# The list of languages and encodings to build and install
353227825Stheraven#
354227825Stheraven#DOC_LANG=	en_US.ISO8859-1 ru_RU.KOI8-R
355228004Stheraven#
356228004Stheraven#
357228004Stheraven# sendmail
358228004Stheraven#
359228004Stheraven# The following sets the default m4 configuration file to use at
360227825Stheraven# install time.  Use with caution as a make install will overwrite
361227825Stheraven# any existing /etc/mail/sendmail.cf.  Note that SENDMAIL_CF is now
362227825Stheraven# deprecated.  The value should be a fully qualified path name.
363227825Stheraven#
364227825Stheraven#SENDMAIL_MC=/etc/mail/myconfig.mc
365227825Stheraven#
366227825Stheraven# If you need to build additional .cf files during a make buildworld,
367227825Stheraven# include the full paths to the .mc files in SENDMAIL_ADDITIONAL_MC.
368227825Stheraven#
369227825Stheraven#SENDMAIL_ADDITIONAL_MC=/etc/mail/foo.mc /etc/mail/bar.mc
370227825Stheraven#
371227825Stheraven# Setting the following variable modifies the flags passed to m4 when
372227825Stheraven# building a .cf file from a .mc file.  It can be used to enable
373227825Stheraven# features disabled by default.
374228004Stheraven#
375227825Stheraven#SENDMAIL_M4_FLAGS=
376227825Stheraven#
377227825Stheraven# Setting the following variables modifies the build environment for
378227825Stheraven# sendmail and its related utilities. For example, SASL support can be
379227825Stheraven# added with settings such as:
380227825Stheraven#
381227825Stheraven#	SENDMAIL_CFLAGS=-I/usr/local/include/sasl -DSASL
382227825Stheraven#	SENDMAIL_LDFLAGS=-L/usr/local/lib
383227825Stheraven#	SENDMAIL_LDADD=-lsasl
384227825Stheraven#
385227825Stheraven# Note: If you are using Cyrus SASL with other applications which require
386227825Stheraven#	access to the sasldb file, you should add '-D_FFR_UNSAFE_SASL' to
387227825Stheraven#	SENDMAIL_CFLAGS.  Also, add the following to your sendmail.mc file:
388227825Stheraven#
389227825Stheraven#	define(`confDONT_BLAME_SENDMAIL',`GroupReadableSASLFile')
390227825Stheraven#
391227825Stheraven#SENDMAIL_CFLAGS=
392227825Stheraven#SENDMAIL_LDFLAGS=
393227825Stheraven#SENDMAIL_LDADD=
394227825Stheraven#SENDMAIL_DPADD=
395227825Stheraven