summaryrefslogtreecommitdiff
path: root/sapi/cgi/config9.m4
Commit message (Collapse)AuthorAgeFilesLines
* MFH:- Added common getopt implementation to core.Jani Taskinen2007-10-011-1/+1
| | | | | | | | | | MFH:- Added long-option feature to getopt(). MFH:- Made getopt() available on win32 systems. MFH: Patch by: David Soria Parra <dsp@php.net> [DOC]: These changes will be available from 5.3+ # Note: Fixed also tests and synced basic_functions.c with HEAD.
* MFH: Improved and cleaned CGI code. FastCGI is now always enabled and can ↵Dmitry Stogov2007-09-271-60/+28
| | | | not be disabled. See sapi/cgi/CHANGES for more details.
* MFH: - Changed AC_ARG_* options to PHP_ARG_* options.Jani Taskinen2007-07-111-58/+41
| | | | | | | | | | | | MFH: - Some cleanups here and there MFH: - Enabled PHP_CHECK_CONFIGURE_OPTIONS (checks for unknown configure MFH: options) # Note to Marcus: ext/dba/config.m4 needs to be "converted" to use # the PHP_ARG_* options. I did't touch it needs quite a lot of work to keep # it's current behaviour regarding "enabled-by-default" parts of it. # # Hint: By using the PHP_ARG_* options you have the "default" option.. ;)
* MFH: Fix some configure --help textsfoobar2007-07-031-9/+6
|
* - Unify installation of SAPIs: CGI is no exception anymore.foobar2007-05-241-3/+3
|
* libfcgi cleanup (Andrei Nigmatulin)Dmitry Stogov2007-05-211-3/+0
|
* MFH: move PHP_TEST_WRITE_STDOUT to acinclude.m4 and use it in configure.inAntony Dovgal2007-02-201-32/+0
|
* Removed unused libfcgiDmitry Stogov2006-09-281-5/+0
|
* AIX supportDmitry Stogov2006-02-021-1/+1
|
* Reimplement FastCGI interfaceDmitry Stogov2006-02-021-5/+2
| | | | | | | | | Due to licensing restrictions that actually don't allow anybody to use the libfcgi code without prior approval from Open Market, which is impossible to obtain - we decided to reimplement this interface from scratch. The result is actually slightly faster, and more importantly, clear of any copyright issues.
* Fixed support for shared extensions on AIXDmitry Stogov2005-07-071-0/+3
|
* - Unify the "configure --help" textsfoobar2005-05-291-12/+11
|
* Expose EXEEXT and use for cli/cgi binariesfoobar2005-04-211-1/+1
|
* MFB: Fix VPATH buildfoobar2005-03-061-0/+1
|
* MFB_4_3: Quote macro names in AC_DEFUN()foobar2004-12-301-1/+1
|
* - Made --program-prefix and --program-suffix work. (See bug #23030)foobar2003-12-011-1/+1
|
* Aligned configure help texts.foobar2003-10-031-4/+5
|
* - Should fix some CLI build problems on some systems.foobar2003-09-081-2/+2
|
* *** empty log message ***foobar2003-07-021-1/+1
|
* Fix install-sapi dependency - it should depend on OVERALL_TARGET, of course.Sascha Schumann2003-07-021-2/+1
|
* - Separate CGI build from regular SAPI buildfoobar2003-07-011-1/+2
| | | | | | | | # Creating the libphp5.a lib is not necessary for CGI build. # # btw. It would be quite easy to build CGI, CLI and for example Apache SAPI # the same time.. :)
* MFB: Fixed bug #22356 (Do not add empty -I flags).foobar2003-02-231-2/+2
|
* MFB:Edin Kadribasic2002-12-191-3/+3
| | | | | | Making build system changes according to proposal: http://news.php.net/article.php?group=php.dev&article=92682
* Fix make install target on Cygwin, bug #20807Melvyn Sopacua2002-12-091-1/+8
|
* build support for cgi fixes previously commitedShane Caraveo2002-12-011-0/+18
|
* configure now supports building the cgi-fcgi moduleShane Caraveo2002-11-261-1/+29
| | | | | configure --enable-fastcgi
* - Moved CGI specific lines from configure.in to sapi/cgi/config9.m4foobar2002-10-211-0/+118
which is 'executed' last of the SAPI config.m4's. - Added --disable-cgi option. (was possible only with above change) - Made the sed check to not test for the possibly working sed on Solaris since that would make the test quite useless. (compile would still fail) # That sed check is not enabled yet..need to know whether we fail # during configure or just put out a warning about possible non-working # sed. As even plain ./configure doesn't work in most cases, I think # it would be better to just fail during configure and let the users # fix their paths/install GNU sed.