xref: /dragonfly/etc/defaults/make.conf (revision 52f9f0d9)
1# $FreeBSD: src/etc/defaults/make.conf,v 1.97.2.80 2003/02/15 16:34:56 trhodes Exp $
2#
3# NOTE:  Please would any committer updating this file also update the
4# make.conf(5) manual page, if necessary, which is located in
5# src/share/man/man5/make.conf.5.
6#
7# This file, if present, will be read by make (see /usr/share/mk/sys.mk).
8# It allows you to override macro definitions to make without changing
9# your source tree, or anything the source tree installs.
10#
11# This file must be in valid Makefile syntax.
12#
13# You have to find the things you can put here in the Makefiles and
14# documentation of the source tree.
15#
16# The CPUTYPE variable controls which processor should be targeted for
17# generated code.  This controls processor-specific optimizations in
18# certain code (currently only OpenSSL) as well as modifying the value
19# of CFLAGS to contain the appropriate optimization directive to gcc.
20# The automatic setting of CFLAGS may be overridden using the
21# NO_CPU_CFLAGS variable below.
22# Currently the following CPU types are recognized:
23#   Intel x86 architecture:
24#       (AMD CPUs)	opteron athlon-fx athlon64 k8 k7 k6-3 k6-2 k6 k5
25#       (Intel CPUs)	p4 pentium-m p3 p2 i686 i586/mmx i586 i486
26#
27# If you experience any problems after setting this flag, please unset
28# it again before submitting a bug report or attempting to modify code.
29# It may be that certain types of software will become unstable after being
30# compiled with processor-specific (or higher - see below) optimization flags.
31# If in doubt, do not set CPUTYPE or CFLAGS to non-default values.
32#
33#CPUTYPE=i686
34#NO_CPU_CFLAGS=	true	# Don't add -march=<cpu> to CFLAGS automatically
35#NO_CPU_COPTFLAGS=true	# Don't add -march=<cpu> to COPTFLAGS automatically
36#
37# The CCVER variable controls which GCC-version to use by default.  It
38# should be set using ?= so as not to interfere with CCVER overrides from
39# userland or the buildworld.  Note that building world or the kernel using
40# an experimental compiler might be broken at any time.  We currently
41# recommend that an override NOT be set in /etc/make.conf.
42#
43#CCVER?=gcc44	# (use GCC 4.4, default)
44#
45# CFLAGS controls the compiler settings used when compiling C code.
46# Note that optimization settings above -O (-O2, ...) are not recommended
47# or supported for compiling the world or the kernel - please revert any
48# nonstandard optimization settings to "-O" before submitting bug reports
49# to the developers.
50#
51#CFLAGS= -O -pipe
52#
53# CXXFLAGS controls the compiler settings used when compiling C++ code.
54# Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
55# to add to CXXFLAGS value, "+=" must be used rather than "=".  Using "="
56# alone will remove the often needed contents of CFLAGS from CXXFLAGS.
57#
58#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
59#
60# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
61# for use in developing FreeBSD and testing changes.  They can be used by
62# putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf.  -Wconversion is not
63# included here due to compiler bugs, e.g., mkdir()'s mode_t argument.
64#
65BDECFLAGS=	-W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
66		-Wcast-qual -Wchar-subscripts -Winline \
67		-Wmissing-prototypes -Wnested-externs -Wpointer-arith \
68		-Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings
69#
70# To compile just the kernel with special optimizations, you should use
71# this instead of CFLAGS (which is not applicable to kernel builds anyway).
72# There is very little to gain by using higher optimization levels, and doing
73# so can cause problems.
74#
75#COPTFLAGS= -O -pipe
76#
77# Strip the file before installing.  Setting this to nothing will keep
78# the debugging symbols in the installed files.
79#STRIP=	-s
80#
81# Compare before install
82#INSTALL=install -C
83#
84# To build ppp with normal permissions
85#PPP_NOSUID=	true
86#
87# To enable installing ssh(1) with the setuid bit turned on
88#ENABLE_SUID_SSH=	true
89#
90# Default thread library (c_r or thread_xu)
91THREAD_LIB?=	thread_xu
92#
93# To enable Hesiod support in libc
94#WANT_HESIOD=	true
95#
96# To disable name caching in the nsswitch subsystem.  The generic caching
97# daemon, nscd(8), will not be built either if this option is set.
98#NO_NS_CACHING=	true
99#
100# To avoid building various parts of the base system:
101#NO_BINUTILS221=true	# do not build binutils-2.21
102#NO_CRYPT=	true	# do not build crypto code
103#NO_CVS=	true	# do not build CVS
104#NO_GAMES=	true	# do not enter the games subdirectory
105#NO_GCC41=	true	# do not build gcc-4.1
106#NO_GDB=	true	# do not build GDB
107#NO_LIBC_R=	true	# do not build libc_r (re-entrant version of libc)
108#NO_LPR=	true	# do not build lpr and related programs
109#NO_MAILWRAPPER=true	# do not build the mailwrapper(8) MTA selector
110#NO_MODULES=	true	# do not build modules with the kernel
111#NO_OBJC=	true	# do not build Objective C support
112#NO_OPENSSH=	true	# do not build OpenSSH
113#NO_OPENSSL=	true	# do not build OpenSSL (implies NO_OPENSSH)
114#NO_SENDMAIL=	true	# do not build sendmail and related programs
115#NO_SHARE=	true	# do not enter the share subdirectory
116#NOINFO=	true	# do not make or install info files
117#NOINFOCOMPRESS=true	# do not compress info files
118#NOMAN=		true	# do not build manual pages
119#NOMANCOMPRESS=	true	# do not compress man pages
120#NOPROFILE=	true	# Avoid compiling profiled libraries
121#
122# To build sys/modules when building the world (our old way of doing things)
123#MODULES_WITH_WORLD=true	# do not build modules when building kernel
124#
125# The list of modules to build instead of all of them.
126#MODULES_OVERRIDE=	emulation/linux net/ipfw
127#
128# The following controls building optional IDEA code in libcrypto.
129# Patents are involved - you must not use this unless
130# you either have a license or fall within patent 'fair use'
131# provisions.
132#
133# *** It is YOUR RESPONSIBILITY to determine if you can use this! ***
134#
135# IDEA is patented in the USA and many European countries - thought to
136# be OK to use for any non-commercial use.  This is optional.
137#WANT_IDEA=	YES	# IDEA (128 bit symmetric encryption)
138#
139# The paper size for groff(1), either "letter" or "A4"
140#GROFF_PAPER_SIZE=	letter
141#
142# Default format for system documentation, depends on your printer.
143# Set this to "ascii" for simple printers or screen
144#
145#PRINTERDEVICE=	ps
146#
147# By default, the system will always use the keyboard/video card as system
148# console.  However, the boot blocks may be dynamically configured to use a
149# serial port in addition to or instead of the keyboard/video console.
150#
151# By default we use COM1 as our serial console port *if* we're going to use
152# a serial port as our console at all.  Alter as necessary.
153#
154#   COM1: = 0x3F8, COM2: = 0x2F8, COM3: = 0x3E8, COM4: = 0x2E8
155#
156#BOOT_COMCONSOLE_PORT=	0x3F8
157#
158# The default serial console speed is 9600.  Set the speed to a larger value
159# for better interactive response.
160#
161#BOOT_COMCONSOLE_SPEED=	115200
162#
163# To build the installer as part of buildworld.
164#WANT_INSTALLER=yes
165#
166# Documentation
167#
168# The list of languages and encodings to build and install
169#
170#DOC_LANG=	en_US.ISO8859-1 ru_RU.KOI8-R
171#
172# The list of locale modules to be compiled-in in the static
173# libc.a (and profile/libc.a).
174#STATIC_LOCALES=BIG5 EUC EUCTW ISO2022 MSKanji UTF8
175STATIC_LOCALES=UTF8
176# sendmail
177#
178# The following sets the default m4 configuration file to use at
179# install time.  Use with caution as a make install will overwrite
180# any existing /etc/mail/sendmail.cf.  Note that SENDMAIL_CF is now
181# deprecated.  The value should be a fully qualified path name.
182# Avoid using a value of /etc/mail/sendmail.mc as a buildworld will
183# create /etc/mail/sendmail.cf before installworld installs an
184# updated sendmail binary.
185#
186#SENDMAIL_MC=/etc/mail/myconfig.mc
187#
188# The following sets the default m4 configuration file for mail
189# submission to use at install time.  Use with caution as a make
190# install will overwrite any existing /etc/mail/submit.cf.  The
191# value should be a fully qualified path name.
192# Avoid using a value of /etc/mail/submit.mc as a buildworld will
193# create /etc/mail/submit.cf before installworld installs an
194# updated sendmail binary.
195#
196#SENDMAIL_SUBMIT_MC=/etc/mail/mysubmit.mc
197#
198# If you need to build additional .cf files during a make buildworld,
199# include the full paths to the .mc files in SENDMAIL_ADDITIONAL_MC.
200# Avoid using a value of /etc/mail/sendmail.mc as a buildworld will
201# create /etc/mail/sendmail.cf before installworld installs an
202# updated sendmail binary.
203#
204#SENDMAIL_ADDITIONAL_MC=/etc/mail/foo.mc /etc/mail/bar.mc
205#
206# Setting the following variable modifies the flags passed to m4 when
207# building a .cf file from a .mc file.  It can be used to enable
208# features disabled by default.
209#
210#SENDMAIL_M4_FLAGS=
211#
212# Setting the following variables modifies the build environment for
213# sendmail and its related utilities. For example, SASL support can be
214# added with settings such as:
215#
216#    with SASLv1:
217#	SENDMAIL_CFLAGS=-I/usr/local/include/sasl1 -DSASL
218#	SENDMAIL_LDFLAGS=-L/usr/local/lib
219#	SENDMAIL_LDADD=-lsasl
220#
221#    with SASLv2:
222#	SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2
223#	SENDMAIL_LDFLAGS=-L/usr/local/lib
224#	SENDMAIL_LDADD=-lsasl2
225#
226# Note: If you are using Cyrus SASL with other applications which require
227#	access to the sasldb file, you should add the following to your
228#	sendmail.mc file:
229#
230#	define(`confDONT_BLAME_SENDMAIL',`GroupReadableSASLDBFile')
231#
232#SENDMAIL_CFLAGS=
233#SENDMAIL_LDFLAGS=
234#SENDMAIL_LDADD=
235#SENDMAIL_DPADD=
236#
237# Setting SENDMAIL_SET_USER_ID will install the sendmail binary as a
238# set-user-ID root binary instead of a set-group-ID smmsp binary and will
239# prevent the installation of /etc/mail/submit.cf.
240# This is a deprecated mode of operation.  See etc/mail/README for more
241# information.
242#
243#SENDMAIL_SET_USER_ID=
244#
245# The permissions to use on alias and map databases generated using
246# /etc/mail/Makefile.  Defaults to 0640.
247#
248#SENDMAIL_MAP_PERMS=
249