php-src/sapi/roxen
Sascha Schumann f2f8d38efa Integration of -ng changes. Changes:
- added support for externally built modules,
- improved support for in-tree shared modules,
- fixed diversion bugs,
- configure displays some informative messages,
- faster static build
  (libtool isn't used anymore for compiling non-PIC objects),
- dependencies comparable to automake's without requiring GNU make or GCC,
- working make clean for non-GNU makes.
1999-12-30 02:59:53 +00:00
..
config.m4 Get rid of some config.h.stubs. Comments are placed into AC_DEFINE() 1999-12-29 21:24:43 +00:00
Makefile.in Integration of -ng changes. Changes: 1999-12-30 02:59:53 +00:00
phpmod.pike Now the new direct write is enabled too... 1999-11-25 02:15:59 +00:00
README Implemented direct writing to the client's FD if RXML parsing of the result isn't selected. 1999-11-25 02:05:35 +00:00
roxen.c unlock the serializing lock a tad bit later 1999-12-22 20:11:48 +00:00

Roxen PHP support. Early version. Don't expect to be able to get it to
work. Requires Pike 0.7.79 and Roxen 1.4. Anything less won't work.

The module is now thread safe, in a couple of different modes. First
mode, the default, uses a process global PHP lock in the Roxen
module. This means that all PHP-requests are serialized (ie only one
script is executed at any one time). The second option is using ZTS
(Zend Thread Safe mode). Unless --enable-roxen-zts is specified, this
won't be used. For now this uses a global lock in the PHP interpreter
so the end result is the same (only one concurrent script). In the
future this might change though, but for now you are better off using
the non-ZendThreadSafe version (which works fine with Roxen and
threads).

- The Author, David Hedbor <neotron@php.net>