foobar [Sun, 19 Aug 2001 06:37:05 +0000 (06:37 +0000)]
Fixed bug: #11232. Now we require Fribidi 0.9.0.
# Better use the latest version for this one too since
# it seems to have stabilized and they made an internal
# rewrite for that one.
Ryan Bloom [Fri, 17 Aug 2001 22:25:13 +0000 (22:25 +0000)]
Fix a seg fault in PHP. If a child process is created in the server,
using apr_proc_create, it will seg fault, because PHP is using a NULL
child cleanup. To fix this, we have to use the special cleanup function,
apr_pool_cleanup_null.
This also fixes a compiler warning in the ap_log_error call.
Marc Boeren [Fri, 17 Aug 2001 12:54:24 +0000 (12:54 +0000)]
Added preliminary support framework for Oracle 8. (Mc)
Thies C. Arntzen will look into this to actually make it work,
as I don't have Oracle installed here. As I said, it is only a
framework for Oracle, and it will most likely crash if you
actually try to use the oracle functions before Thies (or
anyone else that wants to, of course) has had a chance to look
at it.
# The other databases will continue to work, of course :)
Sterling Hughes [Fri, 17 Aug 2001 09:08:03 +0000 (09:08 +0000)]
1) update to the ZEND_NUM_ARGS() and Z_*_P{0,2} macros
2) minor ws improvements, removing unecessary error checking logic, and
making the error messages a bit nicer looking
Sterling Hughes [Fri, 17 Aug 2001 06:53:26 +0000 (06:53 +0000)]
Clean up the function for the Zend API (php3, early php4 relics removed).
Use PF_INET, instead of AF_INET, if present.
remove some code enclosed in #if 0 ... #endif that made no sense
Rasmus Lerdorf [Thu, 16 Aug 2001 00:16:00 +0000 (00:16 +0000)]
Commit a bit of random plane hacking.
- A slight exif fix from the latest version of jhead
- Make ext_skel's confirm_module_compiled function consistent
Thies C. Arntzen [Wed, 15 Aug 2001 16:00:56 +0000 (16:00 +0000)]
mega patch to avoid recursive oci-calls as they might break oracle!
php will simply exit() (!!!) once it encounters an attemp to call oracle
while still in an oracle-call. this can only happen when the script gets
interrupted (timeout, apache-restart) and php tries to run the cleanups even
though we are in an unclean state. i will add an -ini flag soon (not before
4.0.7) which will (optional) make php not run the cleanups when in an unclean
state!
Sterling Hughes [Wed, 15 Aug 2001 05:21:43 +0000 (05:21 +0000)]
Removed select(), fd_set(), etc. (wasn't present in the first place, and
these are implemented in the sockwasn't present in the first place, and
these are implemented in the sockets extension))
Stig Bakken [Tue, 14 Aug 2001 21:11:33 +0000 (21:11 +0000)]
* expected error codes are stored on a stack now, PEAR::expectError()
pushes into it, PEAR::popExpect() pops off it
* made pear_error test work on other boxes than my own :-)
foobar [Tue, 14 Aug 2001 11:07:18 +0000 (11:07 +0000)]
@- Fixed a bug in dbase_get_record() and dbase_get_record_with_names().
@ boolean fields are now returned correctly.
@ Patch by Lawrence E. Widman <widman@cardiothink.com> (Jani)