summaryrefslogtreecommitdiff
path: root/ext/standard/php3_syslog.h
Commit message (Collapse)AuthorAgeFilesLines
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-53/+0
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* More symbol work.Andrey Hristov1999-07-261-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | I've defined a few macros to help with module/request init/startup function definitions. Basically: PHP_MINIT_FUNCTION(module) PHP_MSHUTDOWN_FUNCTION(module) PHP_RINIT_FUNCTION(module) PHP_RSHUTDOWN_FUNCTION(module) PHP_MINFO_FUNCTION(module) These will expand to proper function prototypes. Now to specify these in the module entry, use: PHP_MINIT(module) PHP_MSHUTDOWN(module) PHP_RINIT(module) PHP_RSHUTDOWN(module) PHP_MINFO(module) I've updated all modules in ext/standard and everything from ext/apache to ext/db. If you can, please update your module to use these macros.
* conv_proto *.[ch]Sascha Schumann1999-05-161-4/+4
|
* * Include all of the standard modules in internal_functions.c.in. Stig - is ↵Zeev Suraski1999-05-141-0/+8
| | | | | | | | | that the way you intended it to be? How does the basic_functions module get in there? * Fix to get MySQL objects working, even though I'll probably make a dedicated MySQL object in the future.
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+44
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.