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