View | Details | Raw Unified | Return to bug 150365
Collapse All | Expand All

(-)b/share/examples/etc/make.conf (-14 / +16 lines)
Lines 72-80 Link Here
72
#MAKE_SHELL?=sh
72
#MAKE_SHELL?=sh
73
#
73
#
74
# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
74
# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
75
# for use in developing FreeBSD and testing changes.  They can be used by
75
# for use in developing FreeBSD and testing changes.  They should *not* be used
76
# putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf.  -Wconversion is not
76
# in a production envirement.
77
# included here due to compiler bugs, e.g., mkdir()'s mode_t argument.
77
# They can be used by adding the definition shown below to /etc/make.conf.  To
78
# enable BDECFLAGS put "CFLAGS+=${BDECFLAGS}" in /etc/make.conf.  -Wconversion
79
# is not included here due to compiler bugs, e.g., mkdir()'s mode_t argument.
78
#
80
#
79
#BDECFLAGS=	-W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
81
#BDECFLAGS=	-W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
80
#		-Wcast-qual -Wchar-subscripts -Winline \
82
#		-Wcast-qual -Wchar-subscripts -Winline \
Lines 269-282 Link Here
269
# /etc/mail/Makefile.  Defaults to 0640.
271
# /etc/mail/Makefile.  Defaults to 0640.
270
#
272
#
271
#SENDMAIL_MAP_PERMS=
273
#SENDMAIL_MAP_PERMS=
272
#
274
#
273
#
275
#
274
# It is also possible to set variables in make.conf which will only be
276
# It is also possible to set variables in make.conf which will only be
275
# used when compiling a specific port.  For more details see make(1).
277
# used when compiling a specific port.  For more details see make(1).
276
#
278
#
277
#.if ${.CURDIR:M*/irc/irssi-devel*}
279
#.if ${.CURDIR:M*/irc/irssi-devel*}
278
#WITH_DEBUG=YES
280
#WITH_DEBUG=YES
279
#.endif
281
#.endif
280
#
282
#
281
# Another approach is to use /usr/ports/ports-mgmt/portconf which has
283
# Another approach is to use /usr/ports/ports-mgmt/portconf which has
282
# its own config file for port specific options.
284
# its own config file for port specific options.
(-)b/share/man/man5/make.conf.5 (-16 / +5 lines)
Lines 24-30 Link Here
24
.\"
24
.\"
25
.\" $FreeBSD$
25
.\" $FreeBSD$
26
.\"
26
.\"
27
.Dd December 15, 2009
27
.Dd September 7, 2010
28
.Dt MAKE.CONF 5
28
.Dt MAKE.CONF 5
29
.Os
29
.Os
30
.Sh NAME
30
.Sh NAME
Lines 141-157 Optimization levels other than Link Here
141
and
141
and
142
.Fl O2
142
.Fl O2
143
are not supported.
143
are not supported.
144
.Va BDECFLAGS
145
is provided as a set of
146
.Xr gcc 1
147
settings suggested by
148
.An "Bruce Evans" Aq bde@FreeBSD.org
149
for developing and testing changes.
150
They can be used, if set, by:
151
.Pp
152
.Bd -literal -offset indent
153
CFLAGS+=${BDECFLAGS}
154
.Ed
155
.It Va CPUTYPE
144
.It Va CPUTYPE
156
.Pq Vt str
145
.Pq Vt str
157
Controls which processor should be targeted for generated
146
Controls which processor should be targeted for generated
Lines 307-313 The flag for the Link Here
307
command when doing
296
command when doing
308
.Dq Li "make update" .
297
.Dq Li "make update" .
309
This defaults to
298
This defaults to
310
.Op Fl g L Ar 2 .
299
.Fl g L Ar 2 .
311
.It Va SUPHOST
300
.It Va SUPHOST
312
.Pq Vt str
301
.Pq Vt str
313
The hostname of the sup server to use when doing
302
The hostname of the sup server to use when doing
Lines 344-350 set to 0. Link Here
344
Controls the compiler settings when building the
333
Controls the compiler settings when building the
345
kernel.
334
kernel.
346
Optimization levels above
335
Optimization levels above
347
.Oo Fl O ( O2 , No ...\& ) Oc
336
.Fl O ( O2 , No ...\& )
348
are not guaranteed to work.
337
are not guaranteed to work.
349
.It Va KERNCONF
338
.It Va KERNCONF
350
.Pq Vt str
339
.Pq Vt str
Lines 479-485 rather than load the server's kernel. Link Here
479
.Pq Vt bool
468
.Pq Vt bool
480
Defining this and recompiling
469
Defining this and recompiling
481
.Pa /usr/src/sys/boot/i386
470
.Pa /usr/src/sys/boot/i386
482
will add 
471
will add
483
.Xr dcons 4
472
.Xr dcons 4
484
console driver to
473
console driver to
485
.Xr loader 8
474
.Xr loader 8
Lines 619-625 The default value is 0640. Link Here
619
.Pq Vt str
608
.Pq Vt str
620
Additional maps to rebuild when using
609
Additional maps to rebuild when using
621
.Pa /etc/mail/Makefile .
610
.Pa /etc/mail/Makefile .
622
The 
611
The
623
.Pa access ,
612
.Pa access ,
624
.Pa bitdomain ,
613
.Pa bitdomain ,
625
.Pa domaintable ,
614
.Pa domaintable ,

Return to bug 150365