From owner-freebsd-questions@FreeBSD.ORG Sat Sep 20 12:19:13 2003 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 23A5816A4B3 for ; Sat, 20 Sep 2003 12:19:13 -0700 (PDT) Received: from mail2.tpgi.com.au (mail.tpgi.com.au [203.12.160.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id B09DB43FAF for ; Sat, 20 Sep 2003 12:19:11 -0700 (PDT) (envelope-from agh@tpg.com.au) Received: from 192.168.0.2 (220-244-72-6.tpgi.com.au [220.244.72.6]) by mail2.tpgi.com.au (8.12.9/8.12.9) with ESMTP id h8KJHhxq032230; Sun, 21 Sep 2003 05:19:05 +1000 From: "Alastair G. Hogge" To: Erick Smith , FreeBSD Questions Mailing List Date: Sun, 21 Sep 2003 05:17:50 +1000 User-Agent: KMail/1.5.3 References: <200309201139.35075.desertfox@cableaz.com> In-Reply-To: <200309201139.35075.desertfox@cableaz.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200309210517.50791.agh@tpg.com.au> X-Kaspersky-Antivirus: Passed Subject: Re: Newbie MAKE question 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, 20 Sep 2003 19:19:13 -0000 On Sunday, 21 September 2003 04:39, Erick Smith wrote: > This really is a ridiculous question, but I don't have the answer, so here > I am. > > I'm trying to build qt in the ports tree using: > > portinstall -f x11-toolkits/qt32 > > What I WANT to do is specify WITHOUT_OPENGL as per the instructions: > > ===> ************************************************** > ===> NOTE: Use of WITH_OPENGL is not recommended with > ===> the NVidia drivers provided by the x11/nvidia port > ===> If you use these drivers, we recommend you press > ===> Ctrl-C now and set WITHOUT_OPENGL > ===> ************************************************** > > > From the port itself. How do I do this? Well lets see...it's late and I'm intoxicated. "make WITH_OPENGL=x" x = yes|no or "make -DWITHOUT_OPENGL" check out the handbook www.freebsd.org/handbook for far better information then mine. Now for portinstall. Type "man portinstall" and look for passing make varibles thru porinstall itself. Example might be "portinstall x11-toolkits/qt32 - WITH_OPENGL=yes" > Thanks, Hope it made some sense > Erick Alastair