From owner-cvs-all Tue Apr 11 12:20:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7434D37BAE4; Tue, 11 Apr 2000 12:20:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id MAA22151; Tue, 11 Apr 2000 12:20:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Tue, 11 Apr 2000 12:20:32 -0700 (PDT) From: Kris Kennaway To: Archie Cobbs Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules/netgraph Makefile In-Reply-To: <200004111714.KAA05237@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message