Re: Using flags with portinstall of apache?

2008-04-16 Thread Mel
On Wednesday 16 April 2008 17:19:04 Derek Ragona wrote:

> If you want SSL, you need to install that port first.

Err, why?
It's apache22, not the old days of 
apache13-ssl/apache13-modssl/apache13-foossl.
-- 
Mel

Problem with today's modular software: they start with the modules
and never get to the software part.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using flags with portinstall of apache?

2008-04-16 Thread Pietro Cerutti

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Dr. Jennifer Nussbaum wrote:
| In any case, after repeatedly trying and re-trying,
| one of my attempts just worked :-)

Sure your machine is fooling you :)

| Jen

- --
Pietro Cerutti
[EMAIL PROTECTED]

PGP Public Key:
http://gahr.ch/pgp

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (FreeBSD)

iEYEAREKAAYFAkgGMwAACgkQwMJqmJVx946ZVgCgwBDbYKSqiUin1PN69R1gkIA8
idgAoL2NApwusRGjfc2DTbguSRXW/l3G
=k6KQ
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Using flags with portinstall of apache?

2008-04-16 Thread Dr. Jennifer Nussbaum

--- Barry Byrne <[EMAIL PROTECTED]> wrote:

> > > > > >
> > > > > >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.

I am sure it was apache22, and i tried both using the
flags with portinstall, and doing it directly with
make
in the directory.

In any case, after repeatedly trying and re-trying,
one of my attempts just worked :-)

I dont know why and i dont think i did anything
different than the last dozen times, but it is working
now. Thanks everyone for the help!

Jen


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using flags with portinstall of apache?

2008-04-16 Thread Leslie Jensen



Dr. Jennifer Nussbaum skrev:

--- Barry Byrne <[EMAIL PROTECTED]> wrote:

 


-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On
Behalf Of Dr. 

Jennifer Nussbaum
--- Derek Ragona <[EMAIL PROTECTED]>
wrote:


At 10:09 AM 4/16/2008, Dr. Jennifer Nussbaum

wrote:

Hi,

Im having trouble doing a simple Apache22

install.

I first installed it just using "portinstall

apache".

Then i saw that i needed to specify "flags"

during

hte

process, to get the modules i wan't, but i cant

figure

out how to do it.

I first did a pkg_delete of apache to start

over

from

scratch.

Then i tried to add the flags i wanted:
# portinstall -m "WITH_PROXY_MODULES=yes
WITH_SSL_MODULES=yes" apache

But this didnt work--it didnt build the proxy

modules.

I tried again putting those flags in

/etc/make.conf

but its STILL not building the proxy modules.

How am I supposted to do this?!?

If you want SSL, you need to install that port
first.  Also be sure you 
close your double quotes.

Well thats just the thing- i somehow got SSL

installed

the first time, and it installs now, but its the
proxy modules that arent installing now.

Jen

You might want to try adding the following to your
options:

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



Can't you just do make config in /ust/ports/www/apachexx ?


/Leslie

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Using flags with portinstall of apache?

2008-04-16 Thread Barry Byrne
> > > > >
> > > > >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

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Using flags with portinstall of apache?

2008-04-16 Thread Derek Ragona

At 11:16 AM 4/16/2008, Dr. Jennifer Nussbaum wrote:


--- Barry Byrne <[EMAIL PROTECTED]> wrote:

>
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On
> Behalf Of Dr.
> > Jennifer Nussbaum
>
> > --- Derek Ragona <[EMAIL PROTECTED]>
> > wrote:
> >
> > > At 10:09 AM 4/16/2008, Dr. Jennifer Nussbaum
> wrote:
> > > >Hi,
> > > >
> > > >Im having trouble doing a simple Apache22
> install.
> > > >
> > > >I first installed it just using "portinstall
> > > apache".
> > > >Then i saw that i needed to specify "flags"
> during
> > > hte
> > > >process, to get the modules i wan't, but i cant
> > > figure
> > > >out how to do it.
> > > >
> > > >I first did a pkg_delete of apache to start
> over
> > > from
> > > >scratch.
> > > >
> > > >Then i tried to add the flags i wanted:
> > > ># portinstall -m "WITH_PROXY_MODULES=yes
> > > >WITH_SSL_MODULES=yes" apache
> > > >
> > > >But this didnt work--it didnt build the proxy
> > > modules.
> > > >
> > > >I tried again putting those flags in
> /etc/make.conf
> > > >but its STILL not building the proxy modules.
> > > >
> > > >How am I supposted to do this?!?
> > >
> > > If you want SSL, you need to install that port
> > > first.  Also be sure you
> > > close your double quotes.
> >
> > Well thats just the thing- i somehow got SSL
> installed
> > the first time, and it installs now, but its the
> > proxy modules that arent installing now.
> >
> > Jen
>
> You might want to try adding the following to your
> options:
>
> 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


Did you try:
cd /usr/ports/www/apache22
make config

and choose the options you want?

Then do:
make install

-Derek

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Using flags with portinstall of apache?

2008-04-16 Thread Dr. Jennifer Nussbaum

--- Barry Byrne <[EMAIL PROTECTED]> wrote:

>  
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On
> Behalf Of Dr. 
> > Jennifer Nussbaum
> 
> > --- Derek Ragona <[EMAIL PROTECTED]>
> > wrote:
> > 
> > > At 10:09 AM 4/16/2008, Dr. Jennifer Nussbaum
> wrote:
> > > >Hi,
> > > >
> > > >Im having trouble doing a simple Apache22
> install.
> > > >
> > > >I first installed it just using "portinstall
> > > apache".
> > > >Then i saw that i needed to specify "flags"
> during
> > > hte
> > > >process, to get the modules i wan't, but i cant
> > > figure
> > > >out how to do it.
> > > >
> > > >I first did a pkg_delete of apache to start
> over
> > > from
> > > >scratch.
> > > >
> > > >Then i tried to add the flags i wanted:
> > > ># portinstall -m "WITH_PROXY_MODULES=yes
> > > >WITH_SSL_MODULES=yes" apache
> > > >
> > > >But this didnt work--it didnt build the proxy
> > > modules.
> > > >
> > > >I tried again putting those flags in
> /etc/make.conf
> > > >but its STILL not building the proxy modules.
> > > >
> > > >How am I supposted to do this?!?
> > > 
> > > If you want SSL, you need to install that port
> > > first.  Also be sure you 
> > > close your double quotes.
> > 
> > Well thats just the thing- i somehow got SSL
> installed
> > the first time, and it installs now, but its the
> > proxy modules that arent installing now.
> > 
> > Jen
> 
> You might want to try adding the following to your
> options:
> 
> 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


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Using flags with portinstall of apache?

2008-04-16 Thread Barry Byrne
 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Dr. 
> Jennifer Nussbaum

> --- Derek Ragona <[EMAIL PROTECTED]>
> wrote:
> 
> > At 10:09 AM 4/16/2008, Dr. Jennifer Nussbaum wrote:
> > >Hi,
> > >
> > >Im having trouble doing a simple Apache22 install.
> > >
> > >I first installed it just using "portinstall
> > apache".
> > >Then i saw that i needed to specify "flags" during
> > hte
> > >process, to get the modules i wan't, but i cant
> > figure
> > >out how to do it.
> > >
> > >I first did a pkg_delete of apache to start over
> > from
> > >scratch.
> > >
> > >Then i tried to add the flags i wanted:
> > ># portinstall -m "WITH_PROXY_MODULES=yes
> > >WITH_SSL_MODULES=yes" apache
> > >
> > >But this didnt work--it didnt build the proxy
> > modules.
> > >
> > >I tried again putting those flags in /etc/make.conf
> > >but its STILL not building the proxy modules.
> > >
> > >How am I supposted to do this?!?
> > 
> > If you want SSL, you need to install that port
> > first.  Also be sure you 
> > close your double quotes.
> 
> Well thats just the thing- i somehow got SSL installed
> the first time, and it installs now, but its the
> proxy modules that arent installing now.
> 
> Jen

You might want to try adding the following to your options:

WITHOUT_APACHE_OPTIONS=yes

 - barry

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using flags with portinstall of apache?

2008-04-16 Thread Dr. Jennifer Nussbaum

--- Pietro Cerutti <[EMAIL PROTECTED]> wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA512
> 
> Dr. Jennifer Nussbaum wrote:
> 
> | Well thats just the thing- i somehow got SSL
> installed
> | the first time, and it installs now, but its the
> | proxy modules that arent installing now.
> 
> it's WITH_PROXY, not WITH_PROXY_MODULE. Check
> Makfile.options.

But i want ALL the proxy modules. I checked
Makefile.doc, which had this:

## - To enable a category: WITH__MODULES=yes
##[WITH_PROXY_MODULES=yes]

And thats what i had in my original post.

Jen



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using flags with portinstall of apache?

2008-04-16 Thread Pietro Cerutti

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Dr. Jennifer Nussbaum wrote:

| Well thats just the thing- i somehow got SSL installed
| the first time, and it installs now, but its the
| proxy modules that arent installing now.

it's WITH_PROXY, not WITH_PROXY_MODULE. Check Makfile.options.

|
| Jen

- --
Pietro Cerutti
[EMAIL PROTECTED]

PGP Public Key:
http://gahr.ch/pgp

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (FreeBSD)

iEYEAREKAAYFAkgGH8gACgkQwMJqmJVx947vMQCeOIXd9OXm7AUZe0Bo/Cgl9rxy
2PEAn1p2kK2D/9wXyaFPC22d8hZomPxm
=Ho/Q
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using flags with portinstall of apache?

2008-04-16 Thread Dr. Jennifer Nussbaum

--- Derek Ragona <[EMAIL PROTECTED]>
wrote:

> At 10:09 AM 4/16/2008, Dr. Jennifer Nussbaum wrote:
> >Hi,
> >
> >Im having trouble doing a simple Apache22 install.
> >
> >I first installed it just using "portinstall
> apache".
> >Then i saw that i needed to specify "flags" during
> hte
> >process, to get the modules i wan't, but i cant
> figure
> >out how to do it.
> >
> >I first did a pkg_delete of apache to start over
> from
> >scratch.
> >
> >Then i tried to add the flags i wanted:
> ># portinstall -m "WITH_PROXY_MODULES=yes
> >WITH_SSL_MODULES=yes" apache
> >
> >But this didnt work--it didnt build the proxy
> modules.
> >
> >I tried again putting those flags in /etc/make.conf
> >but its STILL not building the proxy modules.
> >
> >How am I supposted to do this?!?
> 
> If you want SSL, you need to install that port
> first.  Also be sure you 
> close your double quotes.

Well thats just the thing- i somehow got SSL installed
the first time, and it installs now, but its the
proxy modules that arent installing now.

Jen


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using flags with portinstall of apache?

2008-04-16 Thread Derek Ragona

At 10:09 AM 4/16/2008, Dr. Jennifer Nussbaum wrote:

Hi,

Im having trouble doing a simple Apache22 install.

I first installed it just using "portinstall apache".
Then i saw that i needed to specify "flags" during hte
process, to get the modules i wan't, but i cant figure
out how to do it.

I first did a pkg_delete of apache to start over from
scratch.

Then i tried to add the flags i wanted:
# portinstall -m "WITH_PROXY_MODULES=yes
WITH_SSL_MODULES=yes" apache

But this didnt work--it didnt build the proxy modules.

I tried again putting those flags in /etc/make.conf
but its STILL not building the proxy modules.

How am I supposted to do this?!?


If you want SSL, you need to install that port first.  Also be sure you 
close your double quotes.


-Derek

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Using flags with portinstall of apache?

2008-04-16 Thread Dr. Jennifer Nussbaum
Hi,

Im having trouble doing a simple Apache22 install.

I first installed it just using "portinstall apache".
Then i saw that i needed to specify "flags" during hte
process, to get the modules i wan't, but i cant figure
out how to do it.

I first did a pkg_delete of apache to start over from
scratch.

Then i tried to add the flags i wanted:
# portinstall -m "WITH_PROXY_MODULES=yes
WITH_SSL_MODULES=yes" apache

But this didnt work--it didnt build the proxy modules.

I tried again putting those flags in /etc/make.conf
but its STILL not building the proxy modules.

How am I supposted to do this?!?

Thanks.

Jen


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"