summaryrefslogtreecommitdiff
path: root/acconfig.h.in
Commit message (Collapse)AuthorAgeFilesLines
* Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE.Sascha Schumann2000-06-081-125/+1
|
* added new option "--enable-sigchild" (default is off)Thies C. Arntzen2000-05-181-0/+3
| | | | | | | | when using this option php will setup it's own SIGCHLD handler. when using oracle-libraries >= 8.1 on linux you need this option if you are connecting using the BEQ interface - elsewise you will see <defunc> processes whenever a php-script disconnects from oracle.
* Nuke DEBUG.Andrei Zmievski2000-03-111-4/+0
|
* - Convert 'PHP3' to 'PHP'Zeev Suraski2000-02-261-1/+1
| | | | | - Avoid declaring crypt() related salt types twice
* SAPIfication, Episode VI: Return of the SAPIZeev Suraski2000-02-101-3/+0
| | | | | | | | | | | | | | | 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
* Full gear backwards. We still need acconfig.h.in for additional acconfig.hSascha Schumann2000-01-121-0/+129
| | | | | files (from TSRM/Zend).
* acconfig.h.in became superflicious when we removed the config.h.stubs.Sascha Schumann2000-01-121-127/+0
| | | | | Let's get rid of it.
* Declare timezone only, if the system fails to do so.Sascha Schumann2000-01-011-2/+0
|
* Fix broken sprintf handling in PHPSascha Schumann1999-12-191-1/+5
|
* Use zend_sprintf by default (which is defined to sprintf, if the system'sSascha Schumann1999-12-191-3/+2
| | | | | sprintf is useable).
* Fix for #2909Sascha Schumann1999-12-031-0/+2
|
* - add PHP_BUILD_THREAD_SAFESascha Schumann1999-11-241-2/+0
| | | | | - move #undef HAVE_AOLSERVER into its own config.h.stub
* Moved HAVE_ROXEN to sapi/roxen/config.h.stubDavid Hedbor1999-11-241-1/+0
|
* Added HAVE_ROXEN for the Roxen sapi moduleDavid Hedbor1999-11-231-0/+1
|
* Decent configure speedup. Makefiles are now generated only for theStig Bakken1999-09-291-0/+2
| | | | | | | extensions you are including. Got rid of configure.in.in. Moved the last Apache-specific files into sapi/apache and made both static and DSO build work again (it still doesn't run properly).
* Started working on the Zeus support. Zeus's ISAPI obviously differs fromStig Bakken1999-09-281-0/+4
| | | | | Windows's, does someone have docs for the Windows API?
* Initial AOLserver support. Note that the current way of creatingSascha Schumann1999-09-251-0/+2
| | | | | | the shared library works only with GNU utilities. Some features have to be added yet (i.e. POST and cookie support).
* final php3.ini -> php.ini renaming?Stig Bakken1999-07-251-1/+1
|
* Remove MEMORY_LIMIT from PHP, it's a Zend issue...Zeev Suraski1999-07-171-3/+0
|
* add dmallocSascha Schumann1999-06-261-0/+2
|
* * fixed some #if/#ifdef issuesStig Bakken1999-06-161-10/+4
| | | | | | | | | | | | * hand-patched in php3 changes from 3.0.6 to HEAD in these files: fopen-wrappers.[ch] ext/standard/file.[ch] ext/standard/fsock.[ch] ext/standard/php3_string.h ext/standard/string.c * added some new file/socket macros for more readable code: FP_FGETS(buf,len,sock,fp,issock) FP_FREAD(buf,len,sock,fp,issock) FP_FEOF(sock,fp,issock) FP_FGETC(sock,fp,issock)
* ZTS fixesZeev Suraski1999-05-041-1/+1
| | | | | | Stig - --enable-thread-safety belongs in libzend, since libzend doesn't #include config.h, whereas PHP does #include zend_config.h
* * added --enable-thread-safety switchStig Bakken1999-05-031-0/+3
| | | | | * now generating internal_functions.c
* Ok, this beast compiles via --with-apxsRasmus Lerdorf1999-04-251-0/+3
| | | | | | | Not sure if it actually works yet though. I have a feeling there are some -fpic flags missing in the libzend build. Will test later on today.
* Oops, would be a good idea to edit the .in file instead of acconfig.hRasmus Lerdorf1999-04-241-0/+3
|
* port from PHP3Sascha Schumann1999-04-241-0/+3
|
* Bring imap build rules up to date. We still have a problem here though.Rasmus Lerdorf1999-04-221-0/+3
| | | | | | | | | | | In this new build structure we are adding libraries to $LIBS as we add modules instead of doing an AC_SUBST into the Makefile. One reason for doing the subst in php3 was to get around the libraries that could not be included in $LIBS because doing so would mess up the various configure tests. For example, you can't do a -limap as part of the various simple configure compile programs because -limap requires a bunch of callback symbols to be present.
* last bunch of extensions moving to ext/Stig Bakken1999-04-221-65/+0
| | | | | | | | fhttpd module taken out of functions, functions is ready to go. The only extensions I have tested are gd+freetype and odbc(solid). Please try compiling in your favourite extensions and let me know how it works.
* moved imap and ldapStig Bakken1999-04-221-9/+0
|
* moved fdf, hyperwave, informix and some smaller filesStig Bakken1999-04-221-3/+0
|
* moved dbStig Bakken1999-04-211-6/+0
|
* moved bcmathStig Bakken1999-04-211-3/+0
|
* moved apache, com and hyperwave into ext/Stig Bakken1999-04-211-3/+0
|
* moved dav, msql and oracle to ext/Stig Bakken1999-04-211-15/+0
|
* moved filepro to extStig Bakken1999-04-211-1/+0
|
* moving mysql to ext/Stig Bakken1999-04-211-4/+0
|
* odbc compiles and runs on UNIX again (tested with Solid 2.3)Stig Bakken1999-04-201-52/+10
|
* generate acconfig.h from acconfig.h.in and ext/*/config.h.stubStig Bakken1999-04-191-0/+261