From owner-freebsd-questions@FreeBSD.ORG Fri May 14 18:45:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE2616A4CE for ; Fri, 14 May 2004 18:45:15 -0700 (PDT) Received: from smtp3.adl2.internode.on.net (smtp3.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id E73C243D1F for ; Fri, 14 May 2004 18:45:14 -0700 (PDT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp34-194.lns1.adl1.internode.on.net [150.101.34.194])i4F1jAk2029326; Sat, 15 May 2004 11:15:11 +0930 (CST) From: Malcolm Kay Organization: at home To: Gerard Samuel , freebsd-questions@freebsd.org Date: Sat, 15 May 2004 11:15:10 +0930 User-Agent: KMail/1.5.4 References: <200405141317.12923.fbsd-questions@trini0.org> <200405141926.40456.ajacoutot@lphp.org> <200405141513.43260.fbsd-questions@trini0.org> In-Reply-To: <200405141513.43260.fbsd-questions@trini0.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200405151115.10290.malcolm.kay@internode.on.net> cc: Antoine Jacoutot Subject: Re: The correct way to run "make" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 May 2004 01:45:15 -0000 On Saturday 15 May 2004 04:43, Gerard Samuel wrote: > On Friday 14 May 2004 01:26 pm, Antoine Jacoutot wrote: > > On Friday 14 May 2004 19:17, Gerard Samuel wrote: > > > a) make --SOMEOPTION=yes > > > b) make --SOMEOPTION=yes > > > c) make SOMEOPTION=yes > > > > I'm not sure there's an "official way", but I think you can use whatever: > > > > make -DOPTION > > make OPTION=1 > > make OPTION=yes > > Im giving up for now. > Tried to build mozilla with -> > make -DWITHOUT_MAILNEWS=yes -DWITHOUT_LDAP=yes -DWITHOUT_CHATZILLA=yes > install and it still has the mail and chatzilla modules installed. > Maybe Ill experiment with it later (like when Im sleeping).... You are mixing two methods of nominating options. What these produce is not defined. -DWITHOUT_MAILNEWS sets WITHOUT_MAILNEWS = 1 WITHOUT_MAILNEWS=yes sets WITHOUT_MAILNEWS = yes The second method is safer as it is possible that the specific value "yes" is required. Hardly surprising you're invented version didn't work ;) I imagine it tries to set "WITHOUT_MAILNEWS=yes" = 1 Malcolm