diff options
Diffstat (limited to 'etc/make.conf')
-rw-r--r-- | etc/make.conf | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/etc/make.conf b/etc/make.conf index 38c1953dd2c06..796e0a44dc9a0 100644 --- a/etc/make.conf +++ b/etc/make.conf @@ -1,4 +1,4 @@ -# $Id: make.conf,v 1.72 1999/01/11 15:06:57 peter Exp $ +# $Id: make.conf,v 1.69 1998/08/29 01:24:21 dillon 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 @@ -13,12 +13,13 @@ # #CFLAGS= -O -pipe # +# Another useful entry is # -# Avoid compiling profiled libraries #NOPROFILE= true +# Avoid compiling profiled libraries # -# Compare before install #INSTALL=install -C +# Compare before install # # To avoid building the default system perl #NOPERL= true @@ -37,6 +38,14 @@ # #COPTFLAGS= -O -pipe # +# To use an ELF kernel, you can set this flag. MAKE SURE that you have a +# working /boot/loader installed. /boot.config should specify "/boot/loader" +# as the kernel. The bootblocks load the third stage loader, then it loads +# the kernel proper and any other modules you want. Its startup script +# file is /boot/loader.conf: +# +#KERNFORMAT= elf +# # To compile and install the 4.4 lite libm instead of the default use: # #WANT_CSRG_LIBM= yes @@ -134,7 +143,7 @@ # remove the "/${DIST_SUBDIR}/" part.) # #MASTER_SITE_BACKUP?= \ -# ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/ +# ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ # # If you want your port fetches to check the above site first (before # the MASTER_SITES specified in the port Makefiles), uncomment the @@ -157,9 +166,6 @@ #MASTER_SITE_PERL_CPAN= ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-module/%SUBDIR%/ #MASTER_SITE_TEX_CTAN= ftp://ftp.tex.ac.uk/tex-archive/%SUBDIR%/ #MASTER_SITE_SUNSITE= ftp://sunsite.unc.edu/pub/Linux/%SUBDIR%/ -#MASTER_SITE_KDE= ftp://ftp.kde.org/pub/kde/%SUBDIR%/ -#MASTER_SITE_COMP_SOURCES= ftp://gatekeeper.dec.com/pub/usenet/comp.sources.%SUBDIR%/ -#MASTER_SITE_GNOME= ftp://ftp.gnome.org/pub/GNOME/sources/%SUBDIR%/ # # # Kerberos IV @@ -186,6 +192,7 @@ #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 @@ -193,3 +200,5 @@ # /etc/passwd. The default number is 20011. # #TOP_TABLE_SIZE= 101 + + |