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