make.conf revision 59897
1# $FreeBSD: head/share/examples/etc/make.conf 59897 2000-05-02 14:16:19Z joe $
2#
3# This file, if present, will be read by make (see /usr/share/mk/sys.mk).
4# It allows you to override macro definitions to make without changing
5# your source tree, or anything the source tree installs.
6#
7# This file must be in valid Makefile syntax.
8#
9# You have to find the things you can put here in the Makefiles and 
10# documentation of the source tree.
11#
12# CFLAGS controls the compiler settings used when compiling C code.
13# Note that optimisation settings above -O (-O2, ...) are not recommended
14# or supported for compiling the world or the kernel - please revert any
15# nonstandard optimisation settings to "-O" before submitting bug reports
16# to the developers.
17# Note also that at this time the -O2 setting is known to produce BROKEN
18# CODE on the Alpha platform.
19#
20#CFLAGS= -O -pipe
21#
22# CXXFLAGS controls the compiler settings used when compiling C++ code.
23# Note that CXXFLAGS is initially set to the value of CFLAGS.  If you wish
24# to add to CXXFLAGS value, "+=" must be used rather than "=".  Using "="
25# alone will remove the often needed contents of CFLAGS from CXXFLAGS.
26#
27#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
28#
29# Avoid compiling profiled libraries
30#NOPROFILE=	true
31#
32# Compare before install
33#INSTALL=install -C
34#
35# To avoid building perl
36#NOPERL=	true
37#
38# To avoid building the suid perl
39#NOSUIDPERL=	true
40#
41# To build perl with thread support
42#PERL_THREADED=	true
43#
44# To avoid building various parts of the base system:
45#NO_CVS=	true	# do not build CVS
46#NO_BIND=	true	# do not build BIND
47#NO_FORTRAN=	true	# do not build g77 and related libraries
48#NO_MAILWRAPPER=true	# do not build the mailwrapper(8) MTA selector
49#NO_MODULES=	true	# do not build modules with the kernel
50#NO_OBJC=	true	# do not build Objective C support
51#NO_OPENSSH=	true	# do not build OpenSSH
52#NO_OPENSSL=	true	# do not build OpenSSL (implies NO_OPENSSH)
53#NO_SENDMAIL=	true	# do not build sendmail and related programs
54#NO_SHAREDOCS=	true	# do not build the 4.4BSD legacy docs
55#NO_TCSH=	true	# do not build and install /bin/csh (which is tcsh)
56#NO_X=		true	# do not compile in XWindows support (e.g. doscmd)
57#NOCRYPT=	true	# do not build any crypto code
58#NODESCRYPTLINKS=true	# do not replace libcrypt -> libscrypt links
59#NOGAMES=	true	# do not build games (games/ subdir)
60#NOINFO=	true	# do not make or install info files
61#NOLIBC_R=	true	# do not build libc_r (re-entrant version of libc)
62#NOSECURE=	true	# do not build crypto code in secure/ subdir
63#NOSHARE=	true	# do not go into the share subdir
64#NOUUCP=	true	# do not build uucp related programs
65#
66# To tell the base system that you are using RSAREF (from ports).
67# (This needs revisiting) - it is very likely that this is too
68# heavily tied to USA_RESIDENT==YES.
69#RSAREF=	YES
70#
71# To avoid running MAKEDEV all on /dev during install:
72#NO_MAKEDEV=	true
73#
74# To compile just the kernel with special optimisations, you should use
75# this instead of CFLAGS (which is not applicable to kernel builds anyway):
76#
77#COPTFLAGS= -O -pipe
78#
79# If you do not want unformatted manual pages to be compressed
80# when they are installed:
81#
82#NOMANCOMPRESS=	true
83#
84#
85# If you want the "compat" shared libraries installed as part of your normal
86# builds, uncomment these:
87#
88#COMPAT1X=	yes
89#COMPAT20=	yes
90#COMPAT21=	yes
91#COMPAT22=	yes
92#COMPAT3X=	yes
93#
94#
95# If you do not want additional documentation (some of which are
96# a few hundred KB's) for ports to be installed:
97#
98#NOPORTDOCS=	true
99#
100#
101# Default format for system documentation, depends on your printer.
102# Set this to "ascii" for simple printers or screen
103#
104#PRINTERDEVICE=	ps
105#
106#
107# How long to wait for a console keypress before booting the default kernel.
108# This value is approximately in milliseconds. Keypresses are accepted by the
109# BIOS before booting from disk, making it possible to give custom boot
110# parameters even when this is set to 0.
111#
112#BOOTWAIT=0
113#BOOTWAIT=30000
114#
115# By default, the system will always use the keyboard/video card as system
116# console.  However, the boot blocks may be dynamically configured to use a
117# serial port in addition to or instead of the keyboard/video console.
118#
119# By default we use COM1 as our serial console port *if* we're going to use
120# a serial port as our console at all.  Alter as necessary.
121#
122#   COM1: = 0x3F8, COM2: = 0x2F8, COM3: = 0x3E8, COM4: = 0x2E8
123#
124#BOOT_COMCONSOLE_PORT=	0x3F8
125#
126# The default serial console speed is 9600.  Set the speed to a larger value
127# for better interactive response.
128#
129#BOOT_COMCONSOLE_SPEED=	115200
130#
131#
132# By default, this points to /usr/X11R6 for XFree86 releases 3.0 or earlier.
133# If you have a XFree86 from before 3.0 that has the X distribution in
134# /usr/X386, you want to uncomment this.
135#
136#X11BASE=	/usr/X386
137#
138#
139# If you have Motif on your system, uncomment this.
140#
141#HAVE_MOTIF=	yes
142#MOTIF_STATIC=  yes
143#
144# If the default location of the Motif library (specified below) is NOT
145# appropriate for you, uncomment this and change it to the correct value.
146# If your motif is in ${X11BASE}/lib, you don't need to touch this line.
147#
148#MOTIFLIB=	-L${X11BASE}/lib -lXm
149#
150#
151# If you're resident in the USA, this will help various ports to determine
152# whether or not they should attempt to comply with the various U.S.
153# export regulations on certain types of software which do not apply to
154# anyone else in the world.
155#
156#USA_RESIDENT=		YES
157#
158# Next one will help ports developers to debug
159#
160#FORCE_PKG_REGISTER=    YES
161#
162#
163# Port master sites.
164#
165# If you want your port fetches to go somewhere else than the default
166# (specified below) in case the distfile/patchfile was not found,
167# uncomment this and change it to a location nearest you.  (Don't
168# remove the "/${DIST_SUBDIR}/" part.)
169#
170#MASTER_SITE_BACKUP?=	\
171#	ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
172#
173# If you want your port fetches to check the above site first (before
174# the MASTER_SITES specified in the port Makefiles), uncomment the
175# line below.  You can also change the right side to point to wherever 
176# you want.
177#
178#MASTER_SITE_OVERRIDE?=	${MASTER_SITE_BACKUP}
179#
180# Some ports use a special variable to point to a collection of
181# mirrors of well-known software archives.  If you have a mirror close
182# to you, uncomment any of the following lines and change it to that
183# address.  (Don't remove the "/%SUBDIR%/" part.)
184#
185# Note: the right hand sides of the following lines are only for your
186# information.  For a full list of default sites, take a look at
187# bsd.port.mk.
188#
189#MASTER_SITE_XCONTRIB=	ftp://ftp.x.org/contrib/%SUBDIR%/
190#MASTER_SITE_GNU=	ftp://prep.ai.mit.edu/pub/gnu/%SUBDIR%/
191#MASTER_SITE_PERL_CPAN=	ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-module/%SUBDIR%/
192#MASTER_SITE_TEX_CTAN=	ftp://ftp.tex.ac.uk/tex-archive/%SUBDIR%/
193#MASTER_SITE_SUNSITE=	ftp://metalab.unc.edu/pub/Linux/%SUBDIR%/
194#MASTER_SITE_KDE=	ftp://ftp.kde.org/pub/kde/%SUBDIR%/
195#MASTER_SITE_COMP_SOURCES=	ftp://gatekeeper.dec.com/pub/usenet/comp.sources.%SUBDIR%/
196#MASTER_SITE_GNOME=	ftp://ftp.gnome.org/pub/GNOME/sources/%SUBDIR%/
197#MASTER_SITE_AFTERSTEP=	ftp://ftp.afterstep.org/%SUBDIR%/
198#MASTER_SITE_WINDOWMAKER=	ftp://ftp.windowmaker.org/pub/%SUBDIR%/
199#
200#
201# Kerberos IV
202# If you want KerberosIV (KTH eBones), define this:
203#
204#MAKE_KERBEROS4=	yes
205#
206#
207# Kerberos 5
208# If you want KerberosIV (KTH Heimdal), define this:
209# ** WARNING **
210# ** WARNING ** This is very experimental at this stage. If you
211# ** WARNING ** need stable Kerberos5, rather use the port(s).
212# ** WARNING **
213#
214#MAKE_KERBEROS5=	yes
215#
216#
217# Kerberos5
218# If you want to install MIT Kerberos5 port somewhere other than /usr/local,
219# define this (this is also used to tell ssh1 that kerberos is needed):
220#
221#KRB5_HOME=		/usr/local
222#
223#
224# CVSup update flags.  Edit SUPFILE settings to reflect whichever distribution
225# file(s) you use on your site (see /usr/share/examples/cvsup/README for more
226# information on CVSup and these files).  To use, do "make update" in /usr/src.
227#
228#SUP_UPDATE=     yes
229#
230#SUP=            /usr/local/bin/cvsup
231#SUPFLAGS=       -g -L 2
232#SUPFILE=        /usr/share/examples/cvsup/standard-supfile
233#SUPFILE1=       /usr/share/examples/cvsup/secure-supfile
234#PORTSSUPFILE=   /usr/share/examples/cvsup/ports-supfile
235#DOCSUPFILE=     /usr/share/examples/cvsup/doc-supfile
236#
237# top(1) uses a hash table for the user names.  The size of this hash
238# can be tuned to match the number of local users.  The table size should
239# be a prime number approximately twice as large as the number of lines in
240# /etc/passwd.  The default number is 20011.
241#
242#TOP_TABLE_SIZE= 101
243#
244# Documentation
245#
246# The list of languages and encodings to build and install
247#
248#DOC_LANG=	en_US.ISO_8859-1 ru_RU.KOI8-R
249