[PHP-DEV] Re: realpath is not available in all LibCs

2005-08-16 Thread Kamesh Jayachandran
Thanks sara for responding. Will write a snippet to address this and get back to you. With regards Kamesh Jayachandran On Thu, 11 Aug 2005 07:52:56 -0700, Sara Golemon [EMAIL PROTECTED] said: Version PHP 5.1 file main/php_init.c function int php_init_config() uses realpath. In NetWare our

[PHP-DEV] Re: realpath is not available in all LibCs

2005-08-11 Thread Sara Golemon
Version PHP 5.1 file main/php_init.c function int php_init_config() uses realpath. In NetWare our earlier releases of LibC SDK has no realpath implementation. I could see the following lines in TSRM/tsrm_virtual_cwd.c #ifndef HAVE_REALPATH #define realpath(x,y) strcpy(y,x) #endif Why not this