[PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Sascha Schumann
On Wed, 28 Aug 2002, Marcus Boerger wrote: Hi Sascha is ther a waay to build three modules, in particular i want to build cli, cgi and the apache module. Yes, it would look like this: 1. ./configure appropiate stuff 2. make 3. make clean 4. goto 1 - Sascha -- PHP

[PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Marcus Börger
At 21:45 28.08.2002, Sascha Schumann wrote: On Wed, 28 Aug 2002, Marcus Boerger wrote: Hi Sascha is ther a waay to build three modules, in particular i want to build cli, cgi and the apache module. Yes, it would look like this: 1. ./configure appropiate stuff 2. make

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Daniel Lorch
hi, Yes, it would look like this: 1. ./configure appropiate stuff 2. make 3. make clean 4. goto 1 - Sascha So we do not have the possibility to build all three without make clean in one go. I would very much appreciate that since it would make

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread George Schlossnagle
Daniel Lorch wrote: hi, Yes, it would look like this: 1. ./configure appropiate stuff 2. make 3. make clean 4. goto 1 - Sascha So we do not have the possibility to build all three without make clean in one go. I would very much appreciate that since it would make

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Sascha Schumann
nice if there was a 'canned' way of doing it. I use the apache sapi and the cli, and it would be nice to be able to build them with a single make. That's already in. - Sascha -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Edin Kadribasic
I think the point isn't that it's not scriptable, but that it would be nice if there was a 'canned' way of doing it. I use the apache sapi and the cli, and it would be nice to be able to build them with a single make. Clearly there are ways to build them both (easily), but it should be

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Mike Hall
Subject: Re: [PHP-DEV] Re: cgi and mod_php I think the point isn't that it's not scriptable, but that it would be nice if there was a 'canned' way of doing it. I use the apache sapi and the cli, and it would be nice to be able to build them with a single make. Clearly there are ways to build

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread derick
On Wed, 28 Aug 2002, George Schlossnagle wrote: I think the point isn't that it's not scriptable, but that it would be nice if there was a 'canned' way of doing it. I use the apache sapi and the cli, and it would be nice to be able to build them with a single make. Clearly there are

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Marcus Börger
My point was to have cli, cgi and mod_php in one go. But now we only have cli or not and allways any other module which defaults to cgi. For me the bast way would be enabling/diabling any module you like and hving cli allways until disabled and havin cgi if no other module than cli is enabled

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Marcus Börger
I think every one here is able to do that kind of hack but it slows down development since ./configure;make clean;make takes ages. For the record cli has --enable-cli and --disable-cli where the first is the default so your script has to check for that and if you want it you build it twice. In

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread George Schlossnagle
]; [EMAIL PROTECTED] Sent: Wednesday, August 28, 2002 9:54 PM Subject: Re: [PHP-DEV] Re: cgi and mod_php I think the point isn't that it's not scriptable, but that it would be nice if there was a 'canned' way of doing it. I use the apache sapi and the cli, and it would be nice to be able to build them

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Edin Kadribasic
For the record cli has --enable-cli and --disable-cli where the first is the default so your script has to check for that and if you want it you build it twice. In other words a correct script would be very long And cli alone is not possible! So what? I takes about 3 more sec. to build

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Marcus Börger
At 23:32 28.08.2002, Edin Kadribasic wrote: For the record cli has --enable-cli and --disable-cli where the first is the default so your script has to check for that and if you want it you build it twice. In other words a correct script would be very long And cli alone is not

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Ilia A.
On August 28, 2002 06:54 pm, Marcus Börger wrote: At 23:32 28.08.2002, Edin Kadribasic wrote: For the record cli has --enable-cli and --disable-cli where the first is the default so your script has to check for that and if you want it you build it twice. In other words a correct script

Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Edin Kadribasic
For the record cli has --enable-cli and --disable-cli where the first is the default so your script has to check for that and if you want it you build it twice. In other words a correct script would be very long And cli alone is not possible! So what? I takes about 3 more sec. to build