summaryrefslogtreecommitdiff
path: root/TSRM/tsrm_virtual_cwd.c
Commit message (Collapse)AuthorAgeFilesLines
* NetWare related changes/modifications.Anantha Kesari H Y2003-01-021-3/+3
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - Add comment in macro and remove some now unneeded codeAndi Gutmans2002-12-201-3/+0
|
* Instead of checking whether realpath exists based on OS. Use theIlia Alshanetsky2002-11-061-1/+1
| | | | | | HAVE_REALPATH define, which is set if realpath() is avaliable. This patch also resolves bug #18868.
* Added 4th argument to virtual_file_ex() that specifies whether or notIlia Alshanetsky2002-11-051-22/+22
| | | | | | realpath() should be used during path resolving. In a number of functions we do not want to use realpath(), since realpath() will resolve symlinks.
* Revert virtual_link() patch.Ilia Alshanetsky2002-11-041-29/+12
|
* - Clean up mess made by netware guys. There's no reason not to abstractAndi Gutmans2002-11-041-15/+0
| | | | | | - the macro a tiny bit more allowing the code to look cleaner. The more - #ifdef's code has the more unreadable it becomes.
* Fix bug #20235.Ilia Alshanetsky2002-11-041-7/+4
|
* windows is smart enough to provide a way to set cwd for new processes.Shane Caraveo2002-10-291-25/+1
|
* Fixed a bug noticed by Jon Parise.Ilia Alshanetsky2002-10-221-2/+2
|
* Fixed compile warnings.Ilia Alshanetsky2002-10-221-8/+4
|
* Fixed symlink/link functions on ZTS builds.Ilia Alshanetsky2002-10-211-2/+26
| | | | | Made URL detection in symlink code use php_stream_locate_url_wrapper().
* Add BeOS thread support to TSRM. This should not impact on any other OS'sDavid Reid2002-10-051-1/+5
| | | | | | | | but allows us to build PHP with threading support and therefore we can build as an Apache 2 module. The locking is currently done using benaphores but this may be reviewed.
* Add VCWD_ACCESSSascha Schumann2002-10-041-0/+18
|
* Changes to build TSRM on NetWareVenkat Raghavan S2002-05-291-35/+124
|
* fixed directory access problem when direcory name is encoded in japanese ↵Rui Hirokawa2002-04-251-1/+2
| | | | Shift_JIS encoding.
* fixed problem when multibyte character is included in file path on Windows. ↵Rui Hirokawa2002-04-211-1/+2
| | | | If _MBCS is defined, _tcstok is defined as _mbstrtok which is multibyte enabled strtok. If _MBCS is not defined, _tcstok is defined as strtok.
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Fix bug 13143Zeev Suraski2001-11-171-1/+1
|
* Nukre most TSRMLS_FETCH()'s in TSRMZeev Suraski2001-08-051-45/+25
|
* another build fix, a simple UNIX build now compiles cleanZeev Suraski2001-07-281-2/+0
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-19/+21
|
* Fix buildSascha Schumann2001-07-281-2/+0
|
* - Prepare for optimization - use a single fetch for multiple resourcesZeev Suraski2001-07-271-5/+5
| | | | | - Clean a bit
* Fix UNC path handlingZeev Suraski2001-06-271-2/+2
|
* Layout fixZeev Suraski2001-05-051-1/+2
|
* Fix missing statementZeev Suraski2001-05-051-0/+2
|
* Fix chdir() under Windows 9x/MEZeev Suraski2001-05-031-4/+8
|
* - Fix some ws to be like the rest of TSRMAndi Gutmans2001-04-271-2/+2
|
* get rid of MS's _popen/_pcloseDaniel Beulshausen2001-04-271-5/+3
|
* support unc style pathsDaniel Beulshausen2001-03-231-0/+3
|
* - BeOS apparently doesn't have realpath(). Improve the previouslyAndi Gutmans2001-01-211-5/+1
| | | | | commited patch.
* @BeOS patch from svanegmond@bang.dhs.org modified somewhat by RasmusRasmus Lerdorf2001-01-211-0/+4
| | | | | BeOS patch from svanegmond@bang.dhs.org modified somewhat by Rasmus
* - Thanks to "Daniel Beulshausen" <daniel@php4win.de>Andi Gutmans2000-11-221-3/+9
|
* sizeof(size_t) != sizeof(int) on 64-bit platforms.Sascha Schumann2000-11-061-1/+1
| | | | | This also makes the API more consistent.
* - Add V_RENAME() by "Daniel Beulshausen" <daniel@php4win.de>.Andi Gutmans2000-10-261-0/+22
| | | | | | - It is untested and all places which use rename() in PHP should now use - V_RENAME().
* - Move #define to .h fileAndi Gutmans2000-10-031-8/+0
|
* - Fix V_CHDIR_FILE()Andi Gutmans2000-10-031-1/+3
|
* - Fix crash bug on NetBSD and OpenBSD. MAXPATHLEN didn't get definedAndi Gutmans2000-09-071-6/+0
| | | | | correctly and caused a stack overrun. This was *hard* to debug.
* - Centralize some configuration stuffAndi Gutmans2000-09-061-12/+2
| | | | | - Use inline in my strtok_r implementation
* - Added macrosAndi Gutmans2000-09-041-1/+0
|
* - More TSRM workAndi Gutmans2000-09-031-6/+1
|
* - Make TSRM work on Windows.Andi Gutmans2000-09-031-10/+25
|
* - Move virtual cwd to TSRM.Andi Gutmans2000-09-031-0/+772
In the least this still doesn't work on Windows.