Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add PHP_STRLCPY macro. This macro should be used in new code instead of | Sascha Schumann | 2000-08-27 | 1 | -0/+21 | |
| | | | | | strlcpy/strlcat which are intended for fixing broken code. | |||||
* | - Fix IMAP build problem | Zeev Suraski | 2000-08-24 | 1 | -1/+1 | |
| | | | | | - Allow external DLLs to use warn_not_available | |||||
* | Cleaning up some mess | Sascha Schumann | 2000-08-21 | 1 | -10/+7 | |
| | ||||||
* | - Change PHP_SEPARATOR to PHP_DIR_SEPARATOR | Andi Gutmans | 2000-08-20 | 1 | -2/+2 | |
| | ||||||
* | Provide PHP_SEPARATOR which expands to the default directory separator | Sascha Schumann | 2000-08-20 | 1 | -0/+2 | |
| | | | | | on the target platform. | |||||
* | Add virtual_real_chdir_file. Silly name for a useful function. | Sascha Schumann | 2000-08-20 | 1 | -1/+1 | |
| | ||||||
* | - Move compat macros to php3_compat.h | Andi Gutmans | 2000-08-10 | 1 | -5/+0 | |
| | ||||||
* | fix stupid bug | Stanislav Malyshev | 2000-08-06 | 1 | -2/+2 | |
| | ||||||
* | Virtualize realpath, chmod, chown and utime | Andi Gutmans | 2000-08-06 | 1 | -2/+16 | |
| | | | | | | This should fix #5935 and #5904 @- Virtualize realpath, chmod, chown and utime (Stas) | |||||
* | decouple this check just in case we hit a weird system that has one | Rasmus Lerdorf | 2000-08-06 | 1 | -0/+2 | |
| | | | | | | and not the other. And we specifically check for this, so we should use the information. | |||||
* | Change header protection macros to conform to standard. | Sascha Schumann | 2000-07-02 | 1 | -2/+2 | |
| | | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation. | |||||
* | - Only use VIRTUAL_DIR in ZTS mode until it is thoroughly tested. | Andi Gutmans | 2000-06-24 | 1 | -5/+3 | |
| | | | | | - Mutex popen() in Windows as the UNIX trick doesn't work there. | |||||
* | - On UNIX support popen() which works with current working directory | Andi Gutmans | 2000-06-12 | 1 | -0/+9 | |
| | | | | | - when in VIRTUAL_DIR mode. | |||||
* | - Start of popen() fix for UNIX. Still unclear what we'll do on Windows. | Andi Gutmans | 2000-06-12 | 1 | -0/+2 | |
| | ||||||
* | Add PHP_BROKEN_SPRINTF check here. | Sascha Schumann | 2000-06-08 | 1 | -6/+6 | |
| | | | | | Also remove unnecessary #ifdef's for PACKAGE and VERSION. | |||||
* | add opendir to VIRTUAL_DIR | Stanislav Malyshev | 2000-06-04 | 1 | -0/+2 | |
| | ||||||
* | Use the new error code | Zeev Suraski | 2000-06-02 | 1 | -5/+0 | |
| | | | | | | | | @- Added set_error_handler() to allow custom error handling functions, @ instead of the built-in error handling code (Zeev, Zend Engine) @- Renamed user_error() to trigger_error(); user_error() remains @ defined for compatibility (Zeev, Zend Engine) | |||||
* | warn_not_available() will be used by other modules besides | Hartmut Holzgraefe | 2000-05-29 | 1 | -0/+2 | |
| | | | | | ext/standard in the (very near) future | |||||
* | Remove stale reference to .h file | Zeev Suraski | 2000-05-29 | 1 | -3/+0 | |
| | ||||||
* | a second (cleaner?) try on warnings about unsupported functions | Hartmut Holzgraefe | 2000-05-27 | 1 | -5/+2 | |
| | ||||||
* | - I'm not sure if PHP_NOT_IN_THIS_BUILD is the way to handle these | Andi Gutmans | 2000-05-27 | 1 | -1/+1 | |
| | | | | | - functions but in any case I have changed it to PHP_NOT_IN_THIS_BUILD() | |||||
* | if a module provides a function it should also do so if the function | Hartmut Holzgraefe | 2000-05-26 | 1 | -0/+6 | |
| | | | | | | | | is not functional due to configure findings the function should offer a meaningful warning if it is not supported instead of just beeing undefined i had already changed this in 'gd', now this is doing it for 'standard' | |||||
* | - Virtual current working directory is now enabled | Andi Gutmans | 2000-05-23 | 1 | -1/+5 | |
| | | | | | - Added support for mkdir()/rmdir() and more | |||||
* | - Support virtual unlink() | Andi Gutmans | 2000-05-23 | 1 | -0/+2 | |
| | ||||||
* | Minor output mods | Zeev Suraski | 2000-05-19 | 1 | -2/+0 | |
| | ||||||
* | Update the license with the new clause 6 | Zeev Suraski | 2000-05-18 | 1 | -2/+2 | |
| | ||||||
* | - Take Sascha's advice and create on V_OPEN() which replaces open(). | Andi Gutmans | 2000-04-30 | 1 | -4/+3 | |
| | | | | | | | | | - Unlike the other macros its argument has to have braces around it, for - example, open(filename, flags) becomse V_OPEN((filename, flags)) - Made small conversion to new Zend macros. The ugly (*foo)->value.str.val - now becomes Z_STRVAL_PP(foo). PP means pointer pointer, there also exist - single P's for example foo->value.str.val becomes Z_STRVAL_P(foo). | |||||
* | - Implement V_OPEN() V_OPEN_CREAT() and V_CREAT(). | Andi Gutmans | 2000-04-29 | 1 | -0/+6 | |
| | | | | | Next step is to substitute all open()'s and creat()'s in the PHP tree | |||||
* | - Never mind. Seems like we're still missing the open() functionality | Zeev Suraski | 2000-04-29 | 1 | -1/+1 | |
| | ||||||
* | - Give VIRTUAL_DIR another try after testing it extensively on our web site | Zeev Suraski | 2000-04-29 | 1 | -1/+1 | |
| | ||||||
* | More error handling work (still completely disabled) | Zeev Suraski | 2000-04-27 | 1 | -1/+8 | |
| | ||||||
* | - virtual_lstat() doesn't exist on Windows. | Andi Gutmans | 2000-04-20 | 1 | -0/+4 | |
| | ||||||
* | - Export strlcat()/strcpy() for Frank. | Andi Gutmans | 2000-04-20 | 1 | -2/+2 | |
| | | | | | - Windows doesn't have lstat(). | |||||
* | - Fix virtual cwd bug | Zeev Suraski | 2000-04-20 | 1 | -0/+2 | |
| | | | | | - Add more V_STAT() V_LSTAT() changes | |||||
* | - Add missing V_STAT() | Andi Gutmans | 2000-04-20 | 1 | -0/+2 | |
| | ||||||
* | - Change PHP_ to V_ (directory & file functions) | Andi Gutmans | 2000-04-15 | 1 | -10/+10 | |
| | ||||||
* | - Turn off VIRTUAL_DIR by default | Andi Gutmans | 2000-04-11 | 1 | -1/+1 | |
| | ||||||
* | - Don't need to extern functions | Andi Gutmans | 2000-04-09 | 1 | -1/+1 | |
| | | | | | - Use virtual_file_ex() in expand_filepath() | |||||
* | - Make all CVS users use the new virtual dir support. | Andi Gutmans | 2000-04-08 | 1 | -2/+0 | |
| | | | | | Will probably disable this for the release. | |||||
* | - This slipped in. Enable VIRTUAL_DIR when we're in ZTS. Eventually it | Andi Gutmans | 2000-04-07 | 1 | -0/+3 | |
| | | | | | should always be enabled. | |||||
* | - Add wddx support to the default build | Andi Gutmans | 2000-04-07 | 1 | -1/+1 | |
| | ||||||
* | - This version of chdir_file should be compatible with the Apache one. | Andi Gutmans | 2000-04-02 | 1 | -0/+2 | |
| | ||||||
* | - Virtual cwd compiles now (need to uncomment #define in php.h for it to | Andi Gutmans | 2000-04-02 | 1 | -0/+2 | |
| | | | | | | be enbaled right now). It seems to work very basic stuff | |||||
* | - Hopefully got most of them. We also need a chdir_file function like | Andi Gutmans | 2000-03-30 | 1 | -0/+2 | |
| | | | | | for Apache. | |||||
* | - Fix another bug in session.c | Andi Gutmans | 2000-03-30 | 1 | -0/+10 | |
| | | | | | - Start using the new PHP_GETCWD() and co. macros | |||||
* | - Update dsp | Zeev Suraski | 2000-03-25 | 1 | -2/+0 | |
| | | | | | - Remove unnecessary includes | |||||
* | Use sprintf everywhere and define sprintf to php_sprintf, if sprintf is broken. | Sascha Schumann | 2000-03-12 | 1 | -1/+1 | |
| | ||||||
* | Fix build on systems which lack snprintf or vsnprintf. | Sascha Schumann | 2000-03-12 | 1 | -5/+2 | |
| | | | | | PR: #3786 | |||||
* | - Don't define DEBUG anymore. Everyone should use PHP_DEBUG. | Andi Gutmans | 2000-03-11 | 1 | -3/+3 | |
| | | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages? | |||||
* | @Cleaned up extension namespace (Stig) | Stig Bakken | 2000-03-06 | 1 | -2/+2 | |
| | | | | | | Cleaned up extension namespace, and changed ext/standard into one single extension. |