Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Apr 2000 12:20:32 -0700 (PDT)
From:      Kris Kennaway <kris@FreeBSD.org>
To:        Archie Cobbs <archie@FreeBSD.org>
Cc:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   Re: cvs commit: src/sys/modules/netgraph Makefile
Message-ID:  <Pine.BSF.4.21.0004111219420.21523-100000@freefall.freebsd.org>
In-Reply-To: <200004111714.KAA05237@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 11 Apr 2000, Archie Cobbs wrote:

>   Log:
>   Turn off build of ng_mppc KLD until I can figure out how to have the
>   Makefile correctly handle all the possible permutations (including
>   missing crypto sources). Suggestions welcome.

Something like this? The problem is that some people who are building
crypto do not have that file, because it's not on internat.

Kris

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/sys/modules/netgraph/Makefile,v
retrieving revision 1.10
diff -u -r1.10 Makefile
--- Makefile	2000/04/11 17:14:48	1.10
+++ Makefile	2000/04/11 19:19:24
@@ -4,4 +4,8 @@
 SUBDIR=	async bpf cisco echo frame_relay hole iface ksocket lmi \
 	netgraph ppp pppoe pptpgre rfc1490 socket tee tty UI vjc
 
+.if !defined(NOCRYPT) && exists(../../crypto/rc4/rc4.c)
+SUBDIR+=mppc
+.endif
+
 .include <bsd.subdir.mk>



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" 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.0004111219420.21523-100000>