From owner-freebsd-questions@FreeBSD.ORG Wed Apr 16 16:39:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 314E3106566B for ; Wed, 16 Apr 2008 16:39:23 +0000 (UTC) (envelope-from barry.byrne@wbtsystems.com) Received: from hermes.wbtsystems.com (hermes.wbtsystems.com [193.120.231.28]) by mx1.freebsd.org (Postfix) with ESMTP id 9FC548FC1B for ; Wed, 16 Apr 2008 16:39:22 +0000 (UTC) (envelope-from barry.byrne@wbtsystems.com) Received: from SUNYA (sunya.wbt.wbtsystems.com [10.12.1.197]) by hermes.wbtsystems.com (Postfix) with ESMTPA id 14083F7410; Wed, 16 Apr 2008 17:39:20 +0100 (IST) From: "Barry Byrne" To: "'Dr. Jennifer Nussbaum'" , References: <003401c89fda$b9146e70$c5010c0a@wbt.wbtsystems.com> <83976.13074.qm@web53410.mail.re2.yahoo.com> Date: Wed, 16 Apr 2008 17:39:18 +0100 Message-ID: <005601c89fe0$6a2242a0$c5010c0a@wbt.wbtsystems.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 In-reply-to: <83976.13074.qm@web53410.mail.re2.yahoo.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 Thread-Index: Acif3SlTCatY5CqWSj+QWKvrXvGAjwAAo6qA Cc: Subject: RE: Using flags with portinstall of apache? 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: Wed, 16 Apr 2008 16:39:23 -0000 > > > > > > > > > >Then i tried to add the flags i wanted: > > > > ># portinstall -m "WITH_PROXY_MODULES=yes > > > > >WITH_SSL_MODULES=yes" apache > > WITHOUT_APACHE_OPTIONS=yes > > I tried this too, and it doesnt help... > > Whether in /etc/make.conf or passed with -m as an > option to portinstall, it just doesnt want to build > the proxy modules. I dont know why.... > > In my make output, I get: > > ... > checking whether to enable mod_setenvif... shared > checking whether to enable mod_version... shared > checking whether to enable mod_proxy... no > checking whether to enable mod_proxy_connect... no > checking whether to enable mod_proxy_ftp... no > checking whether to enable mod_proxy_http... no > checking whether to enable mod_proxy_ajp... no > checking whether to enable mod_proxy_balancer... no > .. > > No matter what i do :-( > > Jen Are you sure you're working on apache22 rather than v13 or v20? I never use portinstall, just run make directly in the port directory. Maybe something like: cd /usr/ports/www/apache22 make clean make WITH_PROXY_MODULES=yes WITH_SSL_MODULES=yes WITHOUT_APACHE_OPTIONS=yes install clean Alternatively, cd /usr/ports/www/apache22 make clean make config make install clean Should allow you to select the appropriate options. - barry