php-src/sapi
Zeev Suraski 52ff887db5 Made ob_start() and friends reentrant. It's now possible to implement this
long-requested functionality, now that output buffering is re-entrant:

function eval_ret($code)
{
	ob_start();
	eval($code);
	$retval = ob_get_contents();
	ob_end_clean();
	return $retval;
}
2000-07-29 14:46:09 +00:00
..
aolserver Fix typo. A shutdown function is of course called, when the server 2000-07-05 11:27:24 +00:00
apache Made ob_start() and friends reentrant. It's now possible to implement this 2000-07-29 14:46:09 +00:00
cgi Made ob_start() and friends reentrant. It's now possible to implement this 2000-07-29 14:46:09 +00:00
fhttpd Update the license with the new clause 6 2000-05-18 15:34:45 +00:00
isapi Set version number on DLLs 2000-06-30 12:16:58 +00:00
nsapi fix nsapi dsp file 2000-07-02 17:19:49 +00:00
phttpd Separate plain name returned by php_sapi_module() and pretty name 2000-06-26 18:05:55 +00:00
pi3web various version 2.0 and 2.01 licenses -> 2.02 2000-07-24 05:41:02 +00:00
roxen Separate plain name returned by php_sapi_module() and pretty name 2000-06-26 18:05:55 +00:00
servlet various version 2.0 and 2.01 licenses -> 2.02 2000-07-24 05:41:02 +00:00
thttpd Unify use of my email address 2000-07-10 10:09:15 +00:00
Makefile.in Remove trailing empty lines 2000-05-01 22:38:42 +00:00
README * Fix header("HTTP/..") behaviour 1999-10-04 18:07:46 +00:00

Each SAPI backend has to contain:

config.m4: just like for extensions, this file contains
autoconf/automake 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      libs/libphp4.so
PHP_BUILD_STATIC    -- build static target      libs/libphp4.a
PHP_BUILD_PROGRAM   -- build executable         php

(paths relative to top build dir)

Makefile.am: just what you think.  Make sure your target is called
"libphpsapi_NNN.la", where NNN is the value of PHP_SAPI.