Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Apr 2008 17:39:18 +0100
From:      "Barry Byrne" <barry.byrne@wbtsystems.com>
To:        "'Dr. Jennifer Nussbaum'" <bg271828@yahoo.com>, <freebsd-questions@freebsd.org>
Subject:   RE: Using flags with portinstall of apache?
Message-ID:  <005601c89fe0$6a2242a0$c5010c0a@wbt.wbtsystems.com>
In-Reply-To: <83976.13074.qm@web53410.mail.re2.yahoo.com>
References:  <003401c89fda$b9146e70$c5010c0a@wbt.wbtsystems.com> <83976.13074.qm@web53410.mail.re2.yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
> > > > >
> > > > >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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?005601c89fe0$6a2242a0$c5010c0a>