From owner-freebsd-questions@FreeBSD.ORG Sun Mar 26 19:05:46 2006 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 959AC16A400 for ; Sun, 26 Mar 2006 19:05:46 +0000 (UTC) (envelope-from chris@monochrome.org) Received: from mail.monochrome.org (b4.ebbed1.client.atlantech.net [209.190.235.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4D3A43D49 for ; Sun, 26 Mar 2006 19:05:45 +0000 (GMT) (envelope-from chris@monochrome.org) Received: from tripel (tripel [192.168.1.11]) by mail.monochrome.org (8.9.3/8.9.3) with ESMTP id OAA49886; Sun, 26 Mar 2006 14:05:44 -0500 (EST) (envelope-from chris@monochrome.org) Date: Sun, 26 Mar 2006 14:07:34 -0500 (EST) From: Chris Hill To: Matt Singerman In-Reply-To: <54682af50603261043j1c377235ldad7c10ef537d2cd@mail.gmail.com> Message-ID: <20060326135430.E69019@tripel.monochrome.org> References: <54682af50603261010nbc004eby2e3fc19972f1d652@mail.gmail.com> <20060326133209.M69019@tripel.monochrome.org> <54682af50603261043j1c377235ldad7c10ef537d2cd@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Adjusting configuration options during port installation? 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: Sun, 26 Mar 2006 19:05:46 -0000 On Sun, 26 Mar 2006, Matt Singerman wrote: > Thank you for letting me know about this option. Unfortunately, the > specific configure options I am looking for are not listed there. Is > there another way to go in and modify the configuration? You would have to browse through the Makefile and look for configuration options. Typically, if there is a FOOBAR option, you would 'make -DFOOBAR install' in the port directory. Or, you could just edit the Makefile to add the arg you want. Let's look at mail/cyrus-imapd23. Its Makefile has a section that goes CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ --with-cyrus-prefix=${PREFIX}/cyrus \ --with-cyrus-user=${CYRUS_USER} \ --with-cyrus-group=${CYRUS_GROUP} \ --with-sasl=${LOCALBASE} \ --with-bdb-libdir=${LOCALBASE}/lib \ --with-com_err \ --with-openssl=${OPENSSLBASE} \ --with-perl=${PERL5} \ note the trailing backslash I added ^ I would imagine you could just add --with-mboxlist-db=berkeley \ and --with-seen-db=flat to that list. (The backslash means "continued on the next line".) Disclaimers: 1) I know nothing about cyrus. 2) I have never hacked a Makefile in this way. What I've said makes sense to me, but maybe others know better or can elaborate. -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ]