diff options
author | Thies C. Arntzen <thies@php.net> | 1999-10-27 18:30:41 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-10-27 18:30:41 +0000 |
commit | ea880d2b86729f8dc68c5cb4d7572463d089d9b1 (patch) | |
tree | 9ca5eb989986c52c6aa6ac5c75c93d2790d902a3 /main/internal_functions.c.in | |
parent | c171eecd7aea11c22a8d7b111fc6b8a34b243216 (diff) | |
download | php-git-ea880d2b86729f8dc68c5cb4d7572463d089d9b1.tar.gz |
moved output.c into ext/standart and made it thread-safe.
moved output-buffering related functions from basic_functions to output.c
Win32 project need to be updated to reflect new position.
# i'm not really happy with this solution, but it seemed the easiest one!
# the whole output code is a bit hard to understand...
@- Output-Buffering system is now Thread-Safe. (Thies)
Diffstat (limited to 'main/internal_functions.c.in')
-rw-r--r-- | main/internal_functions.c.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/internal_functions.c.in b/main/internal_functions.c.in index 8ac4f47862..4e558e352e 100644 --- a/main/internal_functions.c.in +++ b/main/internal_functions.c.in @@ -54,6 +54,7 @@ #include "ext/standard/php3_syslog.h" #include "ext/standard/php_lcg.h" #include "ext/standard/php_metaphone.h" +#include "ext/standard/php_output.h" @EXT_INCLUDE_CODE@ /* SNMP has to be moved to ext */ @@ -79,6 +80,7 @@ zend_module_entry *php3_builtin_modules[] = { phpext_syslog_ptr, phpext_lcg_ptr, phpext_metaphone_ptr, + phpext_output_ptr, @EXT_MODULE_PTRS@ }; |