summaryrefslogtreecommitdiff
path: root/ext/posix
Commit message (Collapse)AuthorAgeFilesLines
* protosHannes Magnusson2006-10-021-1/+1
|
* fix possible crash in posix_access()Nuno Lopes2006-09-162-0/+16
|
* last portion of z/Z fixesAntony Dovgal2006-08-311-12/+12
|
* Added missing ifdef block.Ilia Alshanetsky2006-06-191-0/+2
| | | | | # Thanks Mike
* Added posix_initgroups() function.Ilia Alshanetsky2006-06-193-1/+24
|
* Added automatic module globals managementDmitry Stogov2006-06-151-6/+8
|
* Adjusted credits file so that it appears properly on phpinfo()Ilia Alshanetsky2006-04-071-1/+1
|
* bump year and license versionfoobar2006-01-012-6/+6
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* - MFH: Fixed initializing and argument checking for posix_mknod().Derick Rethans2005-11-021-2/+6
|
* makedev is a macro on several systems.Magnus M��tt�2005-08-081-1/+1
|
* - Bumber up yearfoobar2005-08-032-2/+2
|
* typofoobar2005-06-301-1/+1
|
* - Added check for makedev systemcall, which Netware doesn't support.Derick Rethans2005-06-302-1/+5
|
* fix build on SolarisWez Furlong2005-06-062-0/+5
|
* Added new function: posix_mknod().Magnus M��tt�2005-05-133-1/+68
|
* - getlogin() / getgroups() are not necessarily available everywherefoobar2005-05-093-1/+13
|
* change return type from NULL to FALSE when parameter parsing failedAntony Dovgal2005-01-281-27/+38
| | | | | (as was requested by Ilia)
* MFB: fix posix_getsid() & posix_getpgid()Antony Dovgal2005-01-281-2/+20
|
* Argh.. Committed old patch.Magnus M��tt�2005-01-071-2/+3
| | | | | Add safe_mode check and fix error code.
* Added new function: posix_access()Magnus M��tt�2005-01-072-5/+45
| | | | | Feature requests: #29615, #14924
* Simplify code via the use of macros.Ilia Alshanetsky2004-04-181-142/+39
|
* "The Visa to Sibiria" (work in progress)Hartmut Holzgraefe2004-03-231-0/+49
| | | | | | | | | Adding a package.xml to a bundled extension does not only ease the transition to PECL whereever suitable but also allows to build and install an extension as "shared" using the PEAR installer without having to deal with phpize and friends by hand
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Fixed paths in various tests. In certain conditions usage of partial fileIlia Alshanetsky2003-08-181-1/+2
| | | | | paths results in test failures.
* proto fixesAndrey Hristov2003-07-191-1/+1
|
* updating license information in the headers.James Cox2003-06-102-6/+6
|
* 64-bit correction to variables passed to zend_parse_parametersDavid Hill2003-03-061-1/+2
| | | | | @64-bit correction to variables passed to zend_parse_parameters (Dave)
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-191-8/+4
|
* Removed pointless memory allocation checks.Ilia Alshanetsky2003-01-181-41/+9
|
* Bump year.Sebastian Bergmann2002-12-312-2/+2
|
* Make these all work with persistent streams too.Wez Furlong2002-09-251-11/+9
|
* - Fix ZTS built.Markus Fischer2002-06-041-2/+2
|
* - Move macro code into distinct function for easier debugging as suggested byMarkus Fischer2002-06-031-21/+29
| | | | | Andi.
* - Fix isatty() and ttyname() (Closes #17323, #17333).Markus Fischer2002-06-031-8/+42
|
* - Fix posix_isatty() and posix_ttyname() (Closes #17323)Markus Fischer2002-05-201-6/+10
|
* p is set, but never used.Sascha Schumann2002-05-041-2/+1
|
* - Fix proto.Markus Fischer2002-04-231-1/+1
|
* Do NOT use c++ comments in c code!!!!!foobar2002-04-131-12/+18
|
* - Fix definesDerick Rethans2002-04-101-2/+2
|
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-122-7/+1
|
* When #if BLAHING a section, ensure to make it's prototype included. ReturnsDan Kalowsky2002-03-061-1/+3
| | | | | build capability to MacOSX.
* - More ZTS fixesDerick Rethans2002-03-061-2/+2
|
* - Introduced posix_errno() (get error number from last error message) andMarkus Fischer2002-03-052-323/+407
| | | | | | | | | | | | | | | | | | | | | | | posix_strerror() (convert error number into error string). - Do not output any error message if any of the function fails with FALSE return value. The proper way now is to call posix_errno() and posix_strerror() after encountering an error condition. - Function not support on a system no longer issue a 'not available' error but simply don't exist so we can safely use 'function_exists'. - Fixed protos. - Use new parameter parsing API. - posix_uname() may be aware of 'domainname' (GNU extension) - posix_getgrnam(), posix_getgrgid(): the returned information does no longer contains mixture of string and numbered keys (hash / array) but contains key 'member' with an array of all members in a list (or an empty array). This breaks BC but is the right thing IMHO.
* Maintain headers.Sebastian Bergmann2002-02-282-2/+2
|
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* Unified the configure messages.foobar2001-11-301-3/+3
|
* - PrototypesDerick Rethans2001-11-081-17/+17
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)