diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-10-16 18:11:58 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-10-16 18:11:58 +0000 |
| commit | f205c08ed7c05677fe73344ce09834e9936eff46 (patch) | |
| tree | cdcc44411990bb226f89acd12029f8f2a0ae3724 /etc | |
| parent | 3340ad95555dfab295ba92b44ce399b574003954 (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/make.conf | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/etc/make.conf b/etc/make.conf index d3775a8ec1e5..4411b43037ee 100644 --- a/etc/make.conf +++ b/etc/make.conf @@ -1,4 +1,4 @@ -# $Id: make.conf,v 1.37.2.3 1997/02/23 11:02:40 joerg Exp $ +# $Id: make.conf,v 1.37.2.4 1997/04/15 08:26:19 asami Exp $ # # This file, if present, will be read by make (see /usr/share/mk/sys.mk). # It allows you to override macro definitions to make without changing @@ -11,7 +11,7 @@ # # One, and probably the most common, use could be: # -#CFLAGS= -O2 -m486 -pipe +#CFLAGS= -O -pipe # # Another useful entry is # @@ -22,7 +22,8 @@ # (they aren't needed/necessary) #OBJLINK= yes # -# To compile the kernel with special optimisations, you can use this: +# To compile just the kernel with special optimisations, you should use +# this instead of CFLAGS (which is not applicable to kernel builds anyway): # #COPTFLAGS= -O -pipe # @@ -30,7 +31,6 @@ # #WANT_CSRG_LIBM= yes # -# # If you do not want unformatted manual pages to be compressed # when they are installed: # @@ -107,6 +107,19 @@ #MOTIFLIB= -L${X11BASE}/lib -lXm # # +# If you are running behind a firewall, uncomment the following to leave a +# hint for various make-spawned utilities that they should use passive FTP. +# +#FTP_PASSIVE_MODE= YES +# +# If you're resident in the USA, this will help various ports to determine +# whether or not they should attempt to comply with the various U.S. +# export regulations on certain types of software which do not apply to +# anyone else in the world. +# +#USA_RESIDENT= YES +# +# # Port master sites. # # If you want your port fetches to go somewhere else than the default @@ -165,3 +178,11 @@ #SUPFILE= /usr/share/examples/cvsup/standard-supfile #SUPFILE1= /usr/share/examples/cvsup/secure-supfile #SUPFILE2= /usr/share/examples/cvsup/ports-supfile + +# +# top(1) uses a hash table for the user names. The size of this hash +# can be tuned to match the number of local users. The table size should +# be a prime number approximately twice as large as the number of lines in +# /etc/passwd. The default number is 20011. +# +#TOP_TABLE_SIZE= 101 |
