php-src/sapi/webjames
Sascha Schumann 9c876ea01a Add sapi_header_op interface which supersedes the sapi_add_header and _ex
calls.

Revert the change to the sapi_add_header_ex interface.

Fix various bugs:

1.  header("HTTP/1.0 306 foo");
    header("Location: absolute-uri");

    did not work in combination with several SAPI modules, because
    http_status_line was never properly reset.  And thus, all SAPI
    modules which looked at http_status_line ignored the changed
    http_response_code.

2.  The CGI SAPI did not send out the HTTP status line at all, if
    http_status_line had not been set explicitly by calling
    header("HTTP/1.0 200 foo");
2002-07-03 10:42:31 +00:00
..
config.m4 Backslashes caused the build to fail with autoconf 2.52 2002-03-24 22:57:00 +00:00
CREDITS New SAPI module for the WebJames server on RISC OS 2001-11-05 12:07:49 +00:00
php_webjames.h Update headers. 2001-12-11 15:32:16 +00:00
README Updated build instructions 2002-03-03 14:25:59 +00:00
webjames.c Add sapi_header_op interface which supersedes the sapi_add_header and _ex 2002-07-03 10:42:31 +00:00

README for WebJames SAPI module 
by Alex Waugh <alex@alexwaugh.com>

This is a SAPI module for the WebJames HTTP server, which runs on the
RISC OS operating system.


DOWNLOADS

A recent (February 2002 or later) version of the GCCSDK cross compiler
http://www.hard-mofo.dsvr.net/

WebJames 0.35 or later
http://www.webjames.alexwaugh.com/


BUILDING

$ cd php4
$ ./configure \
	--host=arm-riscos-aof \
	--with-webjames=../webjames/src \
	--with-config-file-path=/Choices: \
	other PHP options
$ make install
$ cd ../webjames
$ ./configure --enable-php
$ make