summaryrefslogtreecommitdiff
path: root/sapi/apache/sapi_apache.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix opened_path initStanislav Malyshev2000-08-131-0/+1
| | | | | # forgot to commit
* Made ob_start() and friends reentrant. It's now possible to implement thisZeev Suraski2000-07-291-1/+1
| | | | | | | | | | | | | | long-requested functionality, now that output buffering is re-entrant: function eval_ret($code) { ob_start(); eval($code); $retval = ob_get_contents(); ob_end_clean(); return $retval; }
* @- Fixed closingThies C. Arntzen2000-07-101-6/+1
|
* Move main.h to php_main.h.Sascha Schumann2000-06-051-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* more apachewin32 work. much better now, but still crashing in zend_execute. ↵Shane Caraveo2000-05-041-14/+9
| | | | At least it's getting the file open now though.
* zeroing the variables fixes one crash...now crashes on memory allocation ↵Shane Caraveo2000-04-301-0/+4
| | | | during zend_compile_files
* apache module now compiles under win32, apache loads, but crashes on line ↵Shane Caraveo2000-04-301-0/+6
| | | | 1167 main.c on page request
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fix warnings when compiling static Apache moduleSascha Schumann2000-02-181-1/+1
|
* No need for a value (not that it seems to work anyway...)Zeev Suraski2000-02-171-1/+1
|
* @- Updated the browscap module to work with PHP 4.0 (Zeev)Zeev Suraski2000-02-161-0/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* More php3_ annihilationZeev Suraski1999-12-171-1/+1
|
* Make Apache SAPI module compile in ZTS modeSascha Schumann1999-12-171-2/+1
|
* @- Fix a crash in the Apache syntax highlighting mode (Zeev)Zeev Suraski1999-12-091-1/+0
|
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-1/+1
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* - zend_file_handles must now flag whether their .filename property should beZeev Suraski1999-12-041-0/+1
| | | | | free by Zend or not (uses e*() functions)
* Clean up regex header file mess. php.h now explicitly includes php_regex.hRasmus Lerdorf1999-10-301-1/+2
| | | | | | | and php_regex.h figures out which regex header files to include and defines symbols that prevents other stuff from including the wrong versions of regex header files.
* * archive-based convenience libraries completely replacedSascha Schumann1999-10-041-0/+99
with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature