make.conf revision 38613
1# $Id: make.conf,v 1.68 1998/08/26 21:20:47 dillon Exp $
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# Another useful entry is
17#
18#NOPROFILE=	true
19#	Avoid compiling profiled libraries
20#
21#INSTALL=install -C
22#       Compare before install
23#
24# To avoid building the default system perl
25#NOPERL=	true
26# To avoid building the suid perl
27#NOSUIDPERL=	true
28#
29# To avoid building sendmail
30#NO_SENDMAIL=	true
31#
32# To have 'obj' symlinks created in your source directory
33#       (they aren't needed/necessary)
34#OBJLINK=	yes
35#
36# To compile just the kernel with special optimisations, you should use
37# this instead of CFLAGS (which is not applicable to kernel builds anyway):
38#
39#COPTFLAGS= -O -pipe
40#
41# To compile and install the 4.4 lite libm instead of the default use:
42#
43#WANT_CSRG_LIBM=	yes
44#
45# If you do not want unformatted manual pages to be compressed
46# when they are installed:
47#
48#NOMANCOMPRESS=	true
49#
50#
51# If you want the "compat" shared libraries installed as part of your normal
52# builds, uncomment these:
53#
54#COMPAT1X=	yes
55#COMPAT20=	yes
56#COMPAT21=	yes
57#
58#
59# If you do not want additional documentation (some of which are
60# a few hundred KB's) for ports to be installed:
61#
62#NOPORTDOCS=	true
63#
64#
65# Default format for system documentation, depends on your printer.
66# Set this to "ascii" for simple printers or screen
67#
68#PRINTERDEVICE=	ps
69#
70#
71# How long to wait for a console keypress before booting the default kernel.
72# This value is approximately in milliseconds. Keypresses are accepted by the
73# BIOS before booting from disk, making it possible to give custom boot
74# parameters even when this is set to 0.
75#
76#BOOTWAIT=0
77#BOOTWAIT=30000
78#
79# By default, the system will always use the keyboard/video card as system
80# console.  However, the boot blocks may be dynamically configured to use a
81# serial port in addition to or instead of the keyboard/video console.
82#
83# By default we use COM1 as our serial console port *if* we're going to use
84# a serial port as our console at all.  (0x3E8 = COM2)
85#
86#BOOT_COMCONSOLE_PORT=	0x3F8
87#
88# The default serial console speed is 9600.  Set the speed to a larger value
89# for better interactive response.
90#
91#BOOT_COMCONSOLE_SPEED=	115200
92#
93#
94# By default, this points to /usr/X11R6 for XFree86 releases 3.0 or earlier.
95# If you have a XFree86 from before 3.0 that has the X distribution in
96# /usr/X386, you want to uncomment this.
97#
98#X11BASE=	/usr/X386
99#
100#
101# If you have Motif on your system, uncomment this.
102#
103#HAVE_MOTIF=	yes
104#MOTIF_STATIC=  yes
105#
106# If the default location of the Motif library (specified below) is NOT
107# appropriate for you, uncomment this and change it to the correct value.
108# If your motif is in ${X11BASE}/lib, you don't need to touch this line.
109#
110#MOTIFLIB=	-L${X11BASE}/lib -lXm
111#
112#
113# If you are running behind a firewall, uncomment the following to leave a
114# hint for various make-spawned utilities that they should use passive FTP.
115#
116#FTP_PASSIVE_MODE=	YES
117#
118# If you're resident in the USA, this will help various ports to determine
119# whether or not they should attempt to comply with the various U.S.
120# export regulations on certain types of software which do not apply to
121# anyone else in the world.
122#
123#USA_RESIDENT=		YES
124#
125# Next one will help ports developers to debug
126#
127#FORCE_PKG_REGISTER=    YES
128#
129#
130# Port master sites.
131#
132# If you want your port fetches to go somewhere else than the default
133# (specified below) in case the distfile/patchfile was not found,
134# uncomment this and change it to a location nearest you.  (Don't
135# remove the "/${DIST_SUBDIR}/" part.)
136#
137#MASTER_SITE_BACKUP?=	\
138#	ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/
139#
140# If you want your port fetches to check the above site first (before
141# the MASTER_SITES specified in the port Makefiles), uncomment the
142# line below.  You can also change the right side to point to wherever 
143# you want.
144#
145#MASTER_SITE_OVERRIDE?=	${MASTER_SITE_BACKUP}
146#
147# Some ports use a special variable to point to a collection of
148# mirrors of well-known software archives.  If you have a mirror close
149# to you, uncomment any of the following lines and change it to that
150# address.  (Don't remove the "/%SUBDIR%/" part.)
151#
152# Note: the right hand sides of the following lines are only for your
153# information.  For a full list of default sites, take a look at
154# bsd.port.mk.
155#
156#MASTER_SITE_XCONTRIB=	ftp://ftp.x.org/contrib/%SUBDIR%/
157#MASTER_SITE_GNU=	ftp://prep.ai.mit.edu/pub/gnu/%SUBDIR%/
158#MASTER_SITE_PERL_CPAN=	ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-module/%SUBDIR%/
159#MASTER_SITE_TEX_CTAN=	ftp://ftp.tex.ac.uk/tex-archive/%SUBDIR%/
160#MASTER_SITE_SUNSITE=	ftp://sunsite.unc.edu/pub/Linux/%SUBDIR%/
161#
162#
163# Kerberos IV
164# If you want KerberosIV (KTH eBones), define this:
165#
166#MAKE_KERBEROS4=	yes
167#
168#
169# Kerberos5
170# If you want to install Kerberos5 somewhere other than /usr/local,
171# define this:
172#
173#KRB5_HOME=		/usr/local/krb5
174#
175#
176# CVSup update flags.  Edit SUPFILE settings to reflect whichever distribution
177# file(s) you use on your site (see /usr/share/examples/cvsup/README for more
178# information on CVSup and these files).  To use, do "make update" in /usr/src.
179#
180#SUP_UPDATE=     yes
181#
182#SUP=            /usr/local/bin/cvsup
183#SUPFLAGS=       -g -L 2 -z
184#SUPFILE=        /usr/share/examples/cvsup/standard-supfile
185#SUPFILE1=       /usr/share/examples/cvsup/secure-supfile
186#SUPFILE2=       /usr/share/examples/cvsup/ports-supfile
187
188#
189# top(1) uses a hash table for the user names.  The size of this hash
190# can be tuned to match the number of local users.  The table size should
191# be a prime number approximately twice as large as the number of lines in
192# /etc/passwd.  The default number is 20011.
193#
194#TOP_TABLE_SIZE= 101
195
196
197