Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New Zend API | Sascha Schumann | 1999-09-25 | 1 | -12/+12 |
| | |||||
* | More symbol work. | Andrey Hristov | 1999-07-26 | 1 | -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 Hristov | 1999-07-24 | 1 | -4/+4 |
| | |||||
* | License update | Zeev Suraski | 1999-07-16 | 1 | -20/+9 |
| | |||||
* | conv_proto *.[ch] | Sascha Schumann | 1999-05-16 | 1 | -4/+4 |
| | |||||
* | Remove tls.[ch] | Zeev Suraski | 1999-04-23 | 1 | -3/+1 |
| | |||||
* | Thread safety patch. It works now with just-in-time resource initialization! | Zeev Suraski | 1999-04-21 | 1 | -1/+1 |
| | |||||
* | First commit of re-structuring phase one. We have started using automake in | Stig Bakken | 1999-04-17 | 1 | -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. |