History log of /PHP-5.6/sapi/aolserver/aolserver.c (Results 101 – 108 of 108)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 3909ab41 08-Oct-1999 Sascha Schumann

(php_info_aolserver): Show information about the SAPI module
(php_ns_module_main): Return early, if request startup failed


# 5a6fe43d 07-Oct-1999 Sascha Schumann

Apparently, we did too much cleanup. The server survives now much longer.


# 02553b5e 07-Oct-1999 Sascha Schumann

POST works now and does not block anymore.


# 93b12f5f 07-Oct-1999 Sascha Schumann

(ns_globals_struct): remove content_type member

(php_ns_request_dtor): remove content_type destructor, re-add path_translated destructor


# 483a4642 07-Oct-1999 Sascha Schumann

Add comments to the source code and fix POST-read-data bug.


# d480d23e 07-Oct-1999 Sascha Schumann

(php_ns_request_handler): call ts_free_thread() to clean up


# 3e202d75 04-Oct-1999 Sascha Schumann

Polish this.


Revision tags: PRE_FETCH_READ_PATCH
# 2a854ca8 27-Sep-1999 Stig Bakken

Generalized server-API build process on UNIX. Each SAPI
implementation now has its own directory under sapi/, just like
extensions have theirs under ext/. To make the final targets appear

Generalized server-API build process on UNIX. Each SAPI
implementation now has its own directory under sapi/, just like
extensions have theirs under ext/. To make the final targets appear
in the main dir, the top-level Makefile includes sapi/NN/Makefile.inc
from the selected sapi backend. This is a plan Makefile stub without
any autoconf substitutions. Each SAPI backend also has its own
config.m4 like extensions (read at the end of diversion 2) and
config.h.stub files.

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 SAPI_TARGET
(the name of the resulting library or program, previously BINNAME).
If they are not specified, they will default to "cgi" and "php",
respectively.

Makefile.inc: has to exist, has to define "INSTALL_IT" to the command
used to install the final target (or ":" for no operation). It also
has to define a plain Makefile rule (without autoconf substitutions)
to build $(SAPI_TARGET)

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

Some testing and fixing probably remains. To make everything hang
together, I've done some ugly tricks that I can imagine causing some
problems. I've built and run the CGI version and built the Apache
DSO.

show more ...


12345