php-src/sapi
2000-11-06 22:12:11 +00:00
..
aolserver Remove --with-aolserver-src directive. 2000-10-30 11:44:18 +00:00
apache - Fix Windows build 2000-11-02 14:53:10 +00:00
apache2filter Add apache_sub_req() 2000-11-06 01:46:28 +00:00
caudium Noted that setting of multiple headers with the same name is fixed. 2000-11-06 22:12:11 +00:00
cgi Fixed a bug in $argv and $argc not being properly defined in command-line mode 2000-11-06 09:55:53 +00:00
fhttpd Update the license with the new clause 6 2000-05-18 15:34:45 +00:00
isapi Unify handling of aborted connections 2000-10-29 16:14:27 +00:00
nsapi Unify handling of aborted connections 2000-10-29 16:14:27 +00:00
phttpd Unify handling of aborted connections 2000-10-29 16:14:27 +00:00
pi3web Unify handling of aborted connections 2000-10-29 16:14:27 +00:00
roxen Changed contact information. 2000-11-02 18:56:42 +00:00
servlet added tsrm dir to include path, and release_ts_inline to lib path 2000-09-26 11:23:56 +00:00
thttpd Add/unify aborted connection handling 2000-10-29 16:01:02 +00:00
Makefile.in Remove trailing empty lines 2000-05-01 22:38:42 +00:00
README Update. Someone should really write better docs. =) 2000-11-02 16:15:03 +00:00

Each SAPI backend has to contain:

config.m4: just like for extensions, this file contains
autoconf directives that end up in the configure script.  The
only difference is that the sapi config.m4 files are read in diversion
(output block) 2 instead of 3.  The sapi config.m4 files should set
two variables: PHP_SAPI (which sapi backend to choose) and INSTALL_IT
(the actions performed when "make install" is executed).  If they are
not specified, they will default to "cgi" and "do nothing,"
respectively.  Additionally, the following m4 macros can be used to
influence what is created during "make":

PHP_BUILD_SHARED    -- build shared target      $SAPI_SHARED
PHP_BUILD_STATIC    -- build static target      $SAPI_STATIC
PHP_BUILD_PROGRAM   -- build executable         $SAPI_PROGRAM

(paths relative to top build dir)