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