summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.c
Commit message (Collapse)AuthorAgeFilesLines
* New Zend APISascha Schumann1999-09-251-12/+12
|
* More symbol work.Andrey Hristov1999-07-261-4/+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.
* A bunch of grunt work updating function entries and declarations.Andrey Hristov1999-07-241-4/+4
|
* License updateZeev Suraski1999-07-161-20/+9
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-4/+4
|
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+1
|
* Thread safety patch. It works now with just-in-time resource initialization!Zeev Suraski1999-04-211-1/+1
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+296
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.