Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Jul 2000 10:22:15 -0400 (EDT)
From:      "Chris D. Faulhaber" <jedgar@fxp.org>
To:        freebsd-stable@freebsd.org
Subject:   Re: RELENG_4 modules
Message-ID:  <Pine.BSF.4.21.0007081020250.67122-100000@pawn.primelocation.net>
In-Reply-To: <Pine.BSF.4.21.0007080937320.7603-100000@earth.causticlabs.com>

next in thread | previous in thread | raw e-mail | index | archive | help
The following appears to not have been MFC'd

-----
Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org
--------------------------------------------------------
FreeBSD: The Power To Serve   -   http://www.FreeBSD.org

Index: etc/defaults/make.conf
===================================================================
RCS file: /home/ncvs/src/etc/defaults/make.conf,v
retrieving revision 1.97.2.7
diff -u -r1.97.2.7 make.conf
--- etc/defaults/make.conf	2000/07/05 00:05:59	1.97.2.7
+++ etc/defaults/make.conf	2000/07/08 14:19:40
@@ -47,6 +47,7 @@
 #NO_FORTRAN=	true	# do not build g77 and related libraries
 #NO_LPR=	true	# do not build lpr and related programs
 #NO_MAILWRAPPER=true	# do not build the mailwrapper(8) MTA selector
+#NO_MODULES=	true	# do not build modules with the kernel
 #NO_OBJC=	true	# do not build Objective C support
 #NO_OPENSSH=	true	# do not build OpenSSH
 #NO_OPENSSL=	true	# do not build OpenSSL (implies NO_OPENSSH)
@@ -61,6 +62,8 @@
 #NOSECURE=	true	# do not build crypto code in secure/ subdir
 #NOSHARE=	true	# do not go into the share subdir
 #
+# To build sys/modules when building the world (our old way of doing things)
+#MODULES_WITH_WORLD=true	# do not build modules when building kernel
 #
 # Controls for building various OPTIONAL parts of the crypto system.
 # Patents are involved - you must not use these unless you either have
Index: sys/Makefile
===================================================================
RCS file: /home/ncvs/src/sys/Makefile,v
retrieving revision 1.20
diff -u -r1.20 Makefile
--- sys/Makefile	1999/11/14 13:54:38	1.20
+++ sys/Makefile	2000/07/08 14:19:41
@@ -12,7 +12,9 @@
 .endif
 
 # KLD modules build for both a.out and ELF
+.if defined(MODULES_WITH_WORLD)
 SUBDIR+=modules
+.endif
 
 HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
 



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0007081020250.67122-100000>