summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.c
Commit message (Collapse)AuthorAgeFilesLines
* @Cleaned up extension namespace (Stig)Stig Bakken2000-03-061-21/+1
| | | | | | Cleaned up extension namespace, and changed ext/standard into one single extension.
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-3/+3
|
* - Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32Andi Gutmans2000-02-101-3/+3
|
* Cleanup patchesZeev Suraski2000-02-051-2/+0
|
* 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).
* - The tree compiles againZeev Suraski1999-12-181-2/+2
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-171-2/+2
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* 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.
* 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.