From owner-freebsd-questions@FreeBSD.ORG Mon Jul 11 21:36:56 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 380BD16A41C for ; Mon, 11 Jul 2005 21:36:56 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CEAE43D45 for ; Mon, 11 Jul 2005 21:36:55 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id E5A1F997792; Mon, 11 Jul 2005 23:36:53 +0200 (CEST) Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 76722-04-3; Mon, 11 Jul 2005 23:36:50 +0200 (CEST) Received: from [80.98.156.20] (catv-50629c14.catv.broadband.hu [80.98.156.20]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by server.t-hosting.hu (Postfix) with ESMTP id 819D999750E; Mon, 11 Jul 2005 23:36:50 +0200 (CEST) Message-ID: <42D2E671.40501@t-hosting.hu> Date: Mon, 11 Jul 2005 23:36:49 +0200 From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: scuba@centroin.com.br References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at t-hosting.hu Cc: freebsd-questions@freebsd.org Subject: Re: How to pass configure options X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2005 21:36:56 -0000 scuba@centroin.com.br wrote: >Hi all, > > How can I pass some extra "configure" options when making ports? > > I could not find it on FAQ or handbook. > > I´m using the "hard" way. > > make fetch > cd work/someprog/ > ./configure --with... > cd ../../ > make > make install > > Is there any other way to do that from make command line? > > >- Marcelo > > > > > Try something like this: make CONFIGURE_ARGS+=--with-feature1 --with-feature2 ... install I'm not sure it works, but there is a CONFIGURE_ARGS macro in the ports' Makefile for this purpose and You should be able to extend that in this way afaik. Cheers, Gábor Kövesdán