summaryrefslogtreecommitdiff
path: root/TSRM
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed bug #36909 (ld: Undefined symbols: _lchown)foobar2006-04-101-0/+4
|
* Fixed bug #35988 (Unknown persistent list entry type in module shutdown)Dmitry Stogov2006-03-142-0/+49
|
* move function definition from .h to .c, where it should beAntony Dovgal2006-02-082-16/+21
|
* init variables (continue making GCC happy)Antony Dovgal2006-02-061-2/+2
|
* Fixed bug #36016 (realpath cache memleaks)Dmitry Stogov2006-01-162-21/+4
|
* - One more updateAndi Gutmans2006-01-041-1/+1
|
* - Update copyright notices to 2006Andi Gutmans2006-01-042-2/+2
|
* - Added the lchown() and lchgrp() functions which change permissions and groupDerick Rethans2006-01-042-4/+14
| | | | | | permissions on symbolic links. #- We'll also add this to PHP 5.1.3? or PHP 5.2, so I didn't add it to NEWS.
* bump year and license versionfoobar2006-01-016-18/+18
|
* fix mkdir() function properly (patch by nlopess)foobar2005-12-231-2/+3
|
* Back out a portion of the previous patch which broke win32 file functionsEdin Kadribasic2005-12-221-1/+1
|
* MFB51: Fixed bug #31347 (is_dir and is_file (incorrectly) return true for anyIlia Alshanetsky2005-12-202-3/+8
| | | | | string greater then 255 characters).
* allocate_new_resource() handles the malloc() for us. Don't leak by ↵Sara Golemon2005-08-291-1/+0
| | | | mallocing twice.
* Fix compile failure with GCC 4.0.xfoobar2005-08-051-1/+1
|
* Bump up yearfoobar2005-08-036-6/+6
|
* Netware pthreads support is good enough. So removing all these fixes of old ↵Anantha Kesari H Y2005-07-161-18/+0
| | | | | | | times. -- Kamesh
* Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function ↵Anantha Kesari H Y2005-07-071-1/+1
| | | | | | | of NetWare LibC like glob. -- Kamesh
* gwtcwd of NetWare LibC gives a cwd with a volume information.Anantha Kesari H Y2005-07-071-0/+17
| | | | | | | | So using getcwdpath which gives with volume information. getcwdpath gives with directory seperator as \ which is against our DEFAULT_SLASH of /. So finding and replacing \ with / -- Kamesh
* COPY_WHEN_ABSOLUTE is not needed for NetWare.Anantha Kesari H Y2005-07-071-2/+0
| | | | | -- Kamesh
* - Unify the "configure --help" textsfoobar2005-05-291-1/+1
|
* Unterminated paren group in BETHREADS definition of tsrm_tls_set() macroSara Golemon2005-05-161-1/+1
|
* consolidate the various tls get/set calls for the different platforms intoWez Furlong2005-04-281-58/+23
| | | | | a single macro, at Andi's request.
* Add three new TSRM api functions:Wez Furlong2005-04-272-0/+96
| | | | | | | | | | TSRM_API void *tsrm_new_interpreter_context(void); TSRM_API void *tsrm_set_interpreter_context(void *new_ctx); TSRM_API void tsrm_free_interpreter_context(void *context); These can be used, with a suitable SAPI, to host multiple interpreters on the same thread.
* check should be on host_alias rather than on target_alias, but somehow works ↵Anantha Kesari H Y2005-04-271-1/+1
| | | | on configure generated using autoconf 2.57.
* MergeZeev Suraski2005-03-201-2/+2
|
* Revert bad fixfoobar2005-03-172-2/+2
|
* Fix Jani breakageRasmus Lerdorf2005-03-162-2/+2
|
* Add a comment to remind me to have a look at this at some point.Rasmus Lerdorf2005-02-271-1/+1
|
* - cross-compile fixfoobar2005-02-241-1/+9
|
* NetWare can use Autoconf based build system.Anantha Kesari H Y2005-02-221-11/+0
|
* NetWare LibC has lstat implementationAnantha Kesari H Y2005-02-211-2/+2
|
* NetWare can make use of autogenerated config header fileAnantha Kesari H Y2005-02-211-2/+0
|
* NetWare has pthreads implementationAnantha Kesari H Y2005-02-211-22/+0
|
* NetWare can use the tsrm_config.hAnantha Kesari H Y2005-02-211-1/+1
|
* NetWare LibC has a lstat implementationAnantha Kesari H Y2005-02-211-1/+1
|
* NetWare has a compliant pthread implementationAnantha Kesari H Y2005-02-011-14/+0
|
* finally use what we calculatedStefan Esser2005-01-151-1/+1
|
* - Fix outside-source-tree builds. Always include generated header filesfoobar2005-01-092-2/+2
| | | | | with #include <some_header.h> to make sure the correct file is used.
* Unnecesary check was removedDmitry Stogov2005-01-081-1/+1
|
* MFB_4_3: Quote macro names in AC_DEFUN()foobar2004-12-303-11/+11
|
* Fixed: virtual_popen in ZTS modeStefan Esser2004-12-021-4/+28
|
* Partly reverted because of problems with some realpath() implementationsStefan Esser2004-12-021-2/+4
|
* Fixed behaviour of TSRM in case of realpath() failureStefan Esser2004-12-011-7/+22
|
* removed redundant CLIB_STAT_PATCH checks. defined the IS_ABSOLUTE_PATH ↵Anantha Kesari H Y2004-10-081-6/+3
| | | | macros to suit the NetWare filesystem convention
* removed redundant NEW_LIBC checks and added the code to recognize the file ↵Anantha Kesari H Y2004-10-081-35/+13
| | | | naming convention in NetWare(supports Windows based drive names like sys: data: and unix like / (sys: being root)
* Fixed compiler warning.Ilia Alshanetsky2004-10-061-0/+1
|
* - Apply realpath() cache patch. We don't use it if we're in safe_mode andAndi Gutmans2004-10-052-17/+163
| | | | | | - friends (which are quite slow anyway). - If it proves to be stable I'll remove the #ifdef's in a few weeks.
* Apply the fixMarcus Boerger2004-07-151-10/+0
|
* - Fix typo although it isn't being builtAndi Gutmans2004-05-231-1/+1
|
* - Once ts_free_id() will be used, we cannot call ctors for deleted idsMarcus Boerger2004-05-131-3/+10
| | | | | when creating new threads.