History log of /PHP-5.4/main/php.h (Results 201 – 225 of 270)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# caeaaf4d 12-Mar-2000 Sascha Schumann

Fix build on systems which lack snprintf or vsnprintf.

PR: #3786


# 9dca788c 11-Mar-2000 Andi Gutmans

- Don't define DEBUG anymore. Everyone should use PHP_DEBUG.
There are 2-3 third-party libs in PHP which use DEBUG and I left them
this way (primary example is pcrelib).
- Please test

- Don't define DEBUG anymore. Everyone should use PHP_DEBUG.
There are 2-3 third-party libs in PHP which use DEBUG and I left them
this way (primary example is pcrelib).
- Please test things and Andrei, can you check that pcrelib stopped
printing the warning messages?

show more ...


# 99e0b363 06-Mar-2000 Stig Bakken

@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.


# 0a092b62 04-Mar-2000 Andi Gutmans

- Fix Win32 build


# 315999da 04-Mar-2000 Sascha Schumann

Prefix some symbols with php_
^(pcre|Xml|XML).*


Revision tags: php-4.0b4pl1, php-4.0b4, php-4.0b4_rc1
# 9b621d1c 19-Feb-2000 Zeev Suraski

Get the license right... (this won't make it to RC1 of B4)


# 1c4532dc 19-Feb-2000 Zeev Suraski

*** empty log message ***


# 02d647b5 18-Feb-2000 Sascha Schumann

Fix warnings when compiling static Apache module


Revision tags: BEFORE_SAPI_POST_PATCH_17_FEB_2000
# 80bdd19e 11-Feb-2000 Zeev Suraski

Fine tune Andi's patch


# 49e98c3d 10-Feb-2000 Zeev Suraski

request_info.c is dead! long live SAPI
@- Finished the server abstraction layer; All of the PHP code is now shared
@ across different servers (Apache, CGI, IIS, etc.), except for thin
@

request_info.c is dead! long live SAPI
@- Finished the server abstraction layer; All of the PHP code is now shared
@ across different servers (Apache, CGI, IIS, etc.), except for thin
@ interface modules (Zeev)

show more ...


# 6d0ab616 10-Feb-2000 Zeev Suraski

SAPIfication, Episode VI: Return of the SAPI
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except f

SAPIfication, Episode VI: Return of the SAPI
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except for the Apache SAPI module.
- No server specific code is in any of the base PHP code.

Still left to be done:
- Eliminate any references to APACHE from the few remaining modules.
- Move request_info.c's logic to SAPI
- Modify the regex function names, and globals, so that we can always
include them, without having to fear any interference with Apache;
Always use the bundled regex library

show more ...


Revision tags: BEFORE_SAPIFICATION_FEB_10_2000
# ec0e2d73 10-Feb-2000 Andi Gutmans

- Little fix


# f452c776 10-Feb-2000 Andi Gutmans

- Introduce PHP_WIN32


Revision tags: BEFORE_PRE_SHUTDOWN_REVERSE_PATCH
# 2dea694a 16-Jan-2000 Zeev Suraski

Remove the post-startup callback support. Modules are now started only after
the entire engine is started. People - please make sure that the session module
works properly for you.


# 3ff75e5b 15-Jan-2000 Thies C. Arntzen

- don't set php_errormsg on errors that will cause a zend_bailout().
using zend_hash_update() can make things worse in this situation.
- new function php_register_pre_request_shutdown(). th

- don't set php_errormsg on errors that will cause a zend_bailout().
using zend_hash_update() can make things worse in this situation.
- new function php_register_pre_request_shutdown(). this way modules
can register callbacks that will be called as soon as execution of
the script is done but *before* any cleanup (global symbol_table etc)
has taken place.

show more ...


# 43ae2bff 01-Jan-2000 Sascha Schumann

Happy Y2K patch! Happy new year (or the new millennium, depending on whether
you start counting at 0 or 1).


# ccb4b183 31-Dec-1999 Zeev Suraski

Happy new year (especially to Thies :)
- Zend branch patches merged in - get the PHP tree uptodate
- Clean


# 5b2ecc5b 30-Dec-1999 Sascha Schumann

Typedef socklen_t, if it is not available


Revision tags: PRE_ISSET_TYPE
# cc205c60 21-Dec-1999 Andrei Zmievski

Correct PHP's mime type.


Revision tags: PRE_LIBZEND_TO_ZEND
# 02d3b394 17-Dec-1999 Zeev Suraski

More php3_ annihilation


Revision tags: PRE_RETURN_REF_MERGE, RETURN_REF_BP
# 8abf7246 07-Dec-1999 Sam Ruby

Provide basis for shared libraries/dlls to contain internal extensions


Revision tags: PRE_RETURN_REF_PATCH
# f3622080 04-Dec-1999 Zeev Suraski

That one is actually supposed to have 'php3' on it - it's the PHP 3.0 compatibility defines for 4.0


# 5b983c94 04-Dec-1999 Sascha Schumann

Clean up php3.*\.h files. The files itself are renamed, and references in all
.*\.[ch] files were changed. There is a slight chance that my script missed
a few changes, please correct them ma

Clean up php3.*\.h files. The files itself are renamed, and references in all
.*\.[ch] files were changed. There is a slight chance that my script missed
a few changes, please correct them manually.

show more ...


# 85210ed9 27-Nov-1999 Zeev Suraski

Get Win32 to compile again


# 35b30a8d 26-Nov-1999 Sascha Schumann

Add reentrant versions of ctime, localtime, gmtime, asctime.

These cannot be implemented platform-independent, so we fall back to the native
non-reentrant versions, but lock during each

Add reentrant versions of ctime, localtime, gmtime, asctime.

These cannot be implemented platform-independent, so we fall back to the native
non-reentrant versions, but lock during each access (only if ZTS is used).

To initialize/destroy the used data structures, you need to call
reentrancy_startup() before sapi_startup(), and reentrancy_shutdown() after
sapi_shutdown().

show more ...


1234567891011