[PHP-DEV] [PATCH]check for makedev in ext/posix(5.1 tree) (Build failure in NetWare)

2005-06-30 Thread Kamesh Jayachandran
Hi Derick, In NetWare there does not exist a function by name makedev. The following patch checks for the existence of makedev and calls only if it exists. http://www.ductape.net/~kameshj/ext_posix_makedev.patch Please apply the same. Thanks in advance With regards Kamesh Jayachandran --

Re: [PHP-DEV] [PATCH]check for makedev in ext/posix(5.1 tree) (Build failure in NetWare)

2005-06-30 Thread Kamesh Jayachandran
Hi Derick, Our LibC implementation of mknod as of today allows creation of regular file, regular dir and fifo only. It does not support Character and Block device creation. The documentation of NetWare LibC mandates dev argument to mknod to be 0.(Which currently the case with php_dev=0). May be

Re: [PHP-DEV] [PATCH]check for makedev in ext/posix(5.1 tree) (Build failure in NetWare)

2005-06-30 Thread Derick Rethans
On Thu, 30 Jun 2005, Kamesh Jayachandran wrote: Hi Derick, Our LibC implementation of mknod as of today allows creation of regular file, regular dir and fifo only. It does not support Character and Block device creation. The documentation of NetWare LibC mandates dev argument to mknod to

Re: [PHP-DEV] [PATCH]check for makedev in ext/posix(5.1 tree) (Build failure in NetWare)

2005-06-30 Thread Kamesh Jayachandran
That is so nice Derick. With regards Kamesh Jayachandran On Thu, 30 Jun 2005 12:00:30 +0200 (CEST), Derick Rethans [EMAIL PROTECTED] said: On Thu, 30 Jun 2005, Kamesh Jayachandran wrote: Hi Derick, Our LibC implementation of mknod as of today allows creation of regular file, regular dir