Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Fix for Thies' leak and Andrei's crash | Andi Gutmans | 1999-10-28 | 2 | -28/+34 |
| | |||||
* | *** empty log message *** | Zeev Suraski | 1999-10-25 | 1 | -2/+3 |
| | |||||
* | Allow CYGWIN directory to be specified as via environment variable | Sam Ruby | 1999-10-23 | 2 | -4/+8 |
| | |||||
* | - Fix isset() with string offsets. | Andi Gutmans | 1999-10-22 | 1 | -4/+4 |
| | |||||
* | fixed is_identicat_function() | Thies C. Arntzen | 1999-10-19 | 1 | -2/+2 |
| | |||||
* | - Move IS_IDENTICAL next to IS_EQUAL | Andi Gutmans | 1999-10-19 | 1 | -97/+97 |
| | |||||
* | - Fix is_identical function | Andi Gutmans | 1999-10-19 | 1 | -10/+27 |
| | |||||
* | - Preliminary submit of Thie's patch. Will fix the rest on Windows | Andi Gutmans | 1999-10-19 | 7 | -1/+33 |
| | | | | | as this was added on UNIX with patch. Changed IS_SAME -> IS_IDENTICAL | ||||
* | Be safe, use (). | Andrei Zmievski | 1999-10-18 | 1 | -5/+5 |
| | |||||
* | unstatic'fy is_numeric_string() | Andrei Zmievski | 1999-10-15 | 2 | -3/+2 |
| | |||||
* | *** empty log message *** | Andrei Zmievski | 1999-10-15 | 2 | -5/+5 |
| | |||||
* | *** empty log message *** | Andrei Zmievski | 1999-10-15 | 1 | -1/+0 |
| | |||||
* | - Add convert_to_number_ex() | Andi Gutmans | 1999-10-15 | 1 | -0/+8 |
| | |||||
* | Add "--disable-inline" for low-memory machines (be it limited | Sascha Schumann | 1999-10-14 | 1 | -0/+17 |
| | | | | | | RAM or virtual memory). It's also useful for Digital C where the C++ compiler thinks "inline" is an invalid specifier. | ||||
* | Use sources from $(srcdir) | Sascha Schumann | 1999-10-14 | 1 | -2/+2 |
| | |||||
* | Do not use $< for anything but implicit rules. | Sascha Schumann | 1999-10-13 | 1 | -2/+2 |
| | |||||
* | (zend_fetch_resource) added warinig if resource is of wrong type | Thies C. Arntzen | 1999-10-13 | 1 | -0/+4 |
| | |||||
* | Disable ZEND_EXTENSIONS_SUPPORT, if RTLD_NOW is not defined. | Sascha Schumann | 1999-10-13 | 1 | -10/+5 |
| | | | | | | Note that this part could be made platform independent by using libltdl (for Solaris, Linux, *BSD, HP-UX, Win16/32, BeOS). | ||||
* | new improved resource-API | Thies C. Arntzen | 1999-10-12 | 2 | -11/+25 |
| | |||||
* | Use DL_LAZY for OpenBSD. This seems to be a compatibility flag which | Sascha Schumann | 1999-10-12 | 1 | -0/+3 |
| | | | | | | | should be used for the 2nd parameter to dlopen. http://www.openbsd.org/cgi-bin/cvsweb/src/share/man/man3/dlfcn.3?rev=1.8 | ||||
* | - object.ptr was made NULL in DO_FCALL but wasn't restored. Right now I | Andi Gutmans | 1999-10-12 | 1 | -8/+7 |
| | | | | | | push it in DO_FCALL and at the end of do_fcall_common it always gets popped. We might be able to optimize it out. | ||||
* | Modified zend_hash() to accept a pointer to sort function. | Andrei Zmievski | 1999-10-11 | 2 | -3/+6 |
| | |||||
* | - No idea why this bug didn't exist before. But I'm too tired to think of it. | Andi Gutmans | 1999-10-11 | 1 | -0/+4 |
| | | | | | | | During a regular do_fcall we need to set object.ptr to NULL and, thus, push it in the beginning and pop it in the end. I hope this fix more or less cuts it. I just want to sleep :) | ||||
* | - Didn't lower refcount when doing an internal function call linked to a ↵ | Andi Gutmans | 1999-10-10 | 1 | -1/+4 |
| | | | | regular object. | ||||
* | - Clean up a bit. Separate before the locking so that we can use SEPARATE_ZVAL | Andi Gutmans | 1999-10-10 | 1 | -22/+9 |
| | | | | | macro. | ||||
* | Add clean target which removes standard targets | Sascha Schumann | 1999-10-10 | 1 | -1/+6 |
| | |||||
* | build.mk can be used to generate build tools. It is usually | Sascha Schumann | 1999-10-10 | 1 | -0/+38 |
| | | | | | | | | faster than buildconf, since it rebuilds only components, if it is necessary. To use it, run $ make -f build.mk | ||||
* | - Shouldn't be needed | Andi Gutmans | 1999-10-09 | 1 | -1/+0 |
| | |||||
* | - God damn this sucked. I hopefully fixed the problems with classes although | Andi Gutmans | 1999-10-09 | 1 | -65/+62 |
| | | | | | we might need to clean stuff up a bit. | ||||
* | Define RTLD_NOW to DL_NOW, if RTLD_NOW is not defined (for OpenBSD). | Sascha Schumann | 1999-10-09 | 1 | -0/+3 |
| | |||||
* | added zval_del_ref() function | Thies C. Arntzen | 1999-10-07 | 2 | -2/+11 |
| | |||||
* | - Reverse my patch | Andi Gutmans | 1999-10-07 | 1 | -2/+2 |
| | |||||
* | - Fixed memory leak with this pointer. It was somtimes initialized with refcount | Andi Gutmans | 1999-10-06 | 1 | -2/+2 |
| | | | | | | | | of 2 instead of 1. - Also fixed a place where object.ptr_ptr is set to pointing to a zval* instead of zval**. I don't think this is ever used so we might be able to remove it altogether. | ||||
* | fix for using resources as array indices | Thies C. Arntzen | 1999-10-06 | 1 | -1/+2 |
| | |||||
* | More portability stuff | Sascha Schumann | 1999-10-05 | 3 | -0/+7 |
| | |||||
* | OSF/1 V4.0 wants -lcxx | Sascha Schumann | 1999-10-05 | 1 | -0/+1 |
| | |||||
* | This causes link problems with anything higher than -O0. | Sascha Schumann | 1999-10-05 | 1 | -1/+1 |
| | |||||
* | Add necessary rule. | Sascha Schumann | 1999-10-04 | 1 | -0/+2 |
| | |||||
* | Use libtool to build. | Sascha Schumann | 1999-10-04 | 6 | -78/+43 |
| | |||||
* | use getParametersEx for all builtin functions | Thies C. Arntzen | 1999-10-04 | 1 | -48/+48 |
| | |||||
* | added add_*_resource() and add_*_bool() functions | Thies C. Arntzen | 1999-10-04 | 2 | -10/+86 |
| | |||||
* | - Hooray. This might actually work. (I hope) | Andi Gutmans | 1999-10-03 | 4 | -5/+23 |
| | |||||
* | Make it executable. | Sascha Schumann | 1999-10-03 | 1 | -1/+1 |
| | |||||
* | - Another locking fix. | Andi Gutmans | 1999-10-02 | 1 | -6/+6 |
| | |||||
* | - Fixed locking problem when fetching string offsets | Andi Gutmans | 1999-10-02 | 1 | -7/+11 |
| | |||||
* | Fix the leak reported on the PHP 3 list (isset() on string offsets) | Zeev Suraski | 1999-10-02 | 1 | -0/+1 |
| | |||||
* | - Move is_ref back to being an unsigned char and not a bit field. | Andi Gutmans | 1999-10-01 | 8 | -35/+33 |
| | |||||
* | - Remove locking support completely | Andi Gutmans | 1999-10-01 | 6 | -59/+3 |
| | |||||
* | - For Andrei. Implement references in array() initializations | Andi Gutmans | 1999-10-01 | 4 | -26/+45 |
| | |||||
* | *** empty log message *** | Zeev Suraski | 1999-09-29 | 1 | -0/+1 |
| |