Go beta 2 (final)

This commit is contained in:
Andi Gutmans 1999-08-09 18:29:40 +00:00
parent 3516ee485a
commit c791d60ad9
4 changed files with 11 additions and 7 deletions

View File

@ -2,10 +2,12 @@ PHP 4.0 CHANGE LOG ChangeLog
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
??? ?? 1999, Version 4.0 Beta 2
- fixed SYSV-SHM interface (Thies).
- updated hyperwave module, made it thread safe
- updated pdflib module, version 0.6 of pdflib no longer supported
- updated fdf module
- Fixed a problem when sending HTTP/1.x header lines using header() (Zeev)
- Win32 builds now include the ODBC module built-in (Zeev)
- Fixed SYSV-SHM interface (Thies).
- Updated hyperwave module, made it thread safe
- Updated pdflib module, version 0.6 of pdflib no longer supported
- Updated fdf module
- Built-in phpinfo() links are now turned off by default. They can be turned
on using the allow_builtin_links INI directive (Zeev)
- Changed phpinfo() to list modules that have no info function (Zeev)

View File

@ -50,7 +50,7 @@ dnl ## Diversion 4 is the last one. Here we generate files and clean up.
divert(1)
dnl ## This is where the version number is changed from now on!
AM_INIT_AUTOMAKE(php, 4.0B2-1)
AM_INIT_AUTOMAKE(php, 4.0B2)
PHP_VERSION=$VERSION
echo "/* automatically generated by configure */" > php_version.h.new

View File

@ -47,6 +47,7 @@
#include "ext/COM/php3_COM.h"
#include "ext/standard/reg.h"
#include "ext/pcre/php_pcre.h"
#include "ext/odbc/php3_odbc.h"
/* SNMP has to be moved to ext */
/* #include "dl/snmp/php3_snmp.h" */
@ -74,7 +75,8 @@ zend_module_entry *php3_builtin_modules[] = {
phpext_standard_ptr,
COM_module_ptr,
phpext_regex_ptr,
phpext_pcre_ptr
phpext_pcre_ptr,
phpext_odbc_ptr
};

View File

@ -1,3 +1,3 @@
/* automatically generated by configure */
/* edit configure.in.in to change version number */
#define PHP_VERSION "4.0B2-1"
#define PHP_VERSION "4.0B2"