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