From: Date: Mon, 10 Jul 2000 01:09:05 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~335 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bab31955c225ed8461bb053dbee656ddedf168a1;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 41e2b329d5..ae8f40528f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,74 @@ +2000-07-09 Sascha Schumann + + * acinclude.m4 + build/library.mk + build/rules.mk + configure.in + dynlib.m4: Add support for building C++ sources. + + In your extension's config.m4, you need to use the m4 macro + + PHP_REQUIRE_CXX + + This shall be called only, if your extension is enabled. + + C++ source files shall not be put into the LTLIBRARY_SOURCES macro. + Instead, the filename of the object shall be put into + LTLIBRARY_OBJECTS_X. I.e. if your extension foo consists of foo.cxx, use + + LTLIBRARY_OBJECTS_X = foo.lo + +2000-07-09 Egon Schmid + + * ext/standard/string.c: Fixed other protos. + + * ext/standard/pack.c: Fixed a proto. + + * ext/standard/math.c: Corrected a mispelled word. + +2000-07-09 Sascha Schumann + + * NEWS: . + + * main/main.c: Restore INI entries after the request shutdown of modules. + + This fixes the problems users of the session module encountered when + using a save handler other than files. + +2000-07-09 Andreas Karajannis + + * sapi/apache/mod_php4.c: Fixed module / global shutdown for apache. + GSHUTDOWN functions are now executed and MSHUTDOWN functions are executed on child process exit + +2000-07-09 Stanislav Malyshev + + * ext/session/session.c: Fix stupid bug. + +2000-07-09 Jouni Ahto + + * ext/interbase/interbase.c: + - Left debugging accidentally on... + + * ext/interbase/interbase.c: + (ibase_blob_import) It's good to have link handle available, if you want to + use it... + (_php_ibase_exec) On error situations, only xsqlda was freed, not its + contents. + + * ext/interbase/interbase.c: + - I must be getting demented. Forgot to add and register list destructor + function when creating new list entry type. Several other modifications + too related to this. Blobs still not working. + +2000-07-09 Sam Ruby + + * ext/java/README + ext/java/java.c + ext/java/reflect.java: Reentrancy fixes + + * sapi/servlet/reqparams.php: Fix for JDK1.2.2/Tomcat3.2 + (can't find beanInfo for interfaces which extend other interfaces) + 2000-07-08 Egon Schmid * ext/standard/string.c: Eliminated a typo.