summaryrefslogtreecommitdiff
path: root/ext/posix
Commit message (Collapse)AuthorAgeFilesLines
* - 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)
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-36/+36
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Cleanup. (some relics from php3 era?)foobar2001-08-081-11/+3
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-1/+0
|
* Check for getpgid (torben@php.net)Jason Greene2001-07-051-1/+1
|
* Change copyright note.Sebastian Bergmann2001-06-191-20/+9
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-21/+11
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-4/+17
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* - Change macros from V_ to VCWD_ because of AIX name clashAndi Gutmans2001-04-301-1/+1
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* - Use CHECKUID_* #define's instead of cryptic numbers in php_checkuid()Andi Gutmans2000-11-021-1/+1
| | | | | | - I did not test for validity of the actual php_checkuid() calls and there - might be mistakes in the previous code.
* I SHALL NOT TOUCH A RELEASE CANDIDATE!Hartmut Holzgraefe2000-10-091-4/+0
| | | | | | | I SHALL NOT TOUCH A RELEASE CANDIDATE! I SHALL NOT TOUCH A RELEASE CANDIDATE! (previous patch reverted)
* added support for GNU-specific domainname field in unameHartmut Holzgraefe2000-10-091-0/+4
|
* - Clean-up original code and add to NEWS.Andi Gutmans2000-10-051-8/+13
|
* Fixed posix_addlimit() when adding the string "unlimited" to the result.Alexander Feldman2000-10-051-2/+2
| | | | | Now the posix_getrlimit() function does not cause core dump.
* fixed ZTS compileThies C. Arntzen2000-08-041-0/+1
|
* Access to global variable safe_mode fixed.Kristian Köhntopp2000-07-261-1/+1
|
* Added seteuid and setegid functions on request by max@valkyrie.sscf.ucsb.edu.Kristian Köhntopp2000-07-263-2/+66
| | | | | Also fixed the function detection for the HAVE_ functions.
* Some cosmetic changes.Egon Schmid2000-07-152-4/+4
|
* Fix add_assoc_string functions.Stanislav Malyshev2000-07-071-21/+21
| | | | | add_assoc_string(l) last parameter is "duplicate", not string length.
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* - I wrote a long msg but the commit didn't go through.Zeev Suraski2000-06-251-1/+1
| | | | | | | | | | - So here is the short version: - a) Start moving to binary opens in Windows - b) Give checkuid_mode() a small face lift including the fopen-wrappers.c - The mode to this function should at least be a #define but that is for - another day. Anyway this whole stuff should be given more face lifts in - the future.
* - Erased an extra line by mistakeAndi Gutmans2000-06-101-1/+1
|
* - Nuke COMPILE_DL. Modules that need to be compiled as dll's in WindowsAndi Gutmans2000-06-101-4/+0
| | | | | - need to define both COMPILE_DL_MODULE and HAVE_MODULE=1
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-13/+13
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-1/+1
|
* #if COMPILE_DLSascha Schumann2000-05-021-1/+1
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+2
|
* Make posix module buildable as shared moduleSascha Schumann2000-05-013-10/+7
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* - Change PHP_ to V_ (directory & file functions)Andi Gutmans2000-04-151-1/+1
|
* phpinfo() prettyingColin Viebrock2000-04-051-1/+4
|
* - Hopefully got most of them. We also need a chdir_file function likeAndi Gutmans2000-03-301-1/+1
| | | | | for Apache.